//===- CodeGenInstAlias.h - InstAlias Class Wrapper -------------*- C++ -*-===// // // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. // See https://llvm.org/LICENSE.txt for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // //===----------------------------------------------------------------------===// // // This file defines a wrapper class for the 'InstAlias' TableGen class. // //===----------------------------------------------------------------------===// #ifndef LLVM_UTILS_TABLEGEN_COMMON_CODEGENINSTALIAS_H #define LLVM_UTILS_TABLEGEN_COMMON_CODEGENINSTALIAS_H #include "llvm/ADT/StringRef.h" #include <cassert> #include <cstdint> #include <string> #include <utility> #include <vector> namespace llvm { template <typename T> class ArrayRef; class CodeGenInstruction; class CodeGenTarget; class DagInit; class SMLoc; class Record; /// CodeGenInstAlias - This represents an InstAlias definition. class CodeGenInstAlias { … }; } // namespace llvm #endif // LLVM_UTILS_TABLEGEN_COMMON_CODEGENINSTALIAS_H