brintos

brintos / llvm-project-archived public Read only

0
0
Text · 922 B · de4667f Raw
32 lines · c
1//===----------------------------------------------------------------------===//2//3// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.4// See https://llvm.org/LICENSE.txt for license information.5// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception6//7//===----------------------------------------------------------------------===//8 9#ifndef LLVM_LIB_TARGET_M68K_M68KSELECTIONDAGINFO_H10#define LLVM_LIB_TARGET_M68K_M68KSELECTIONDAGINFO_H11 12#include "llvm/CodeGen/SelectionDAGTargetInfo.h"13 14#define GET_SDNODE_ENUM15#include "M68kGenSDNodeInfo.inc"16 17namespace llvm {18 19class M68kSelectionDAGInfo : public SelectionDAGGenTargetInfo {20public:21  M68kSelectionDAGInfo();22 23  ~M68kSelectionDAGInfo() override;24 25  void verifyTargetNode(const SelectionDAG &DAG,26                        const SDNode *N) const override;27};28 29} // namespace llvm30 31#endif // LLVM_LIB_TARGET_M68K_M68KSELECTIONDAGINFO_H32