brintos

brintos / llvm-project-archived public Read only

0
0
Text · 835 B · 7ee8563 Raw
29 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_MSP430_MSP430SELECTIONDAGINFO_H10#define LLVM_LIB_TARGET_MSP430_MSP430SELECTIONDAGINFO_H11 12#include "llvm/CodeGen/SelectionDAGTargetInfo.h"13 14#define GET_SDNODE_ENUM15#include "MSP430GenSDNodeInfo.inc"16 17namespace llvm {18 19class MSP430SelectionDAGInfo : public SelectionDAGGenTargetInfo {20public:21  MSP430SelectionDAGInfo();22 23  ~MSP430SelectionDAGInfo() override;24};25 26} // namespace llvm27 28#endif // LLVM_LIB_TARGET_MSP430_MSP430SELECTIONDAGINFO_H29