brintos

brintos / llvm-project-archived public Read only

0
0
Text · 825 B · 78b27b7 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_SPARC_SPARCSELECTIONDAGINFO_H10#define LLVM_LIB_TARGET_SPARC_SPARCSELECTIONDAGINFO_H11 12#include "llvm/CodeGen/SelectionDAGTargetInfo.h"13 14#define GET_SDNODE_ENUM15#include "SparcGenSDNodeInfo.inc"16 17namespace llvm {18 19class SparcSelectionDAGInfo : public SelectionDAGGenTargetInfo {20public:21  SparcSelectionDAGInfo();22 23  ~SparcSelectionDAGInfo() override;24};25 26} // namespace llvm27 28#endif // LLVM_LIB_TARGET_SPARC_SPARCSELECTIONDAGINFO_H29