brintos

brintos / llvm-project-archived public Read only

0
0
Text · 865 B · 7210a15 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_LOONGARCH_LOONGARCHSELECTIONDAGINFO_H10#define LLVM_LIB_TARGET_LOONGARCH_LOONGARCHSELECTIONDAGINFO_H11 12#include "llvm/CodeGen/SelectionDAGTargetInfo.h"13 14#define GET_SDNODE_ENUM15#include "LoongArchGenSDNodeInfo.inc"16 17namespace llvm {18 19class LoongArchSelectionDAGInfo : public SelectionDAGGenTargetInfo {20public:21  LoongArchSelectionDAGInfo();22 23  ~LoongArchSelectionDAGInfo() override;24};25 26} // namespace llvm27 28#endif // LLVM_LIB_TARGET_LOONGARCH_LOONGARCHSELECTIONDAGINFO_H29