//===- llvm/InlineAsm.h - Class to represent inline asm strings -*- 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 class represents the inline asm strings, which are Value*'s that are // used as the callee operand of call instructions. InlineAsm's are uniqued // like constants, and created via InlineAsm::get(...). // //===----------------------------------------------------------------------===// #ifndef LLVM_IR_INLINEASM_H #define LLVM_IR_INLINEASM_H #include "llvm/ADT/Bitfields.h" #include "llvm/ADT/SmallVector.h" #include "llvm/ADT/StringRef.h" #include "llvm/IR/Value.h" #include "llvm/Support/ErrorHandling.h" #include <cassert> #include <string> #include <vector> namespace llvm { class Error; class FunctionType; class PointerType; template <class ConstantClass> class ConstantUniqueMap; class InlineAsm final : public Value { … }; } // end namespace llvm #endif // LLVM_IR_INLINEASM_H