comparison include/llvm/IR/InlineAsm.h @ 83:60c9769439b8 LLVM3.7

LLVM 3.7
author Tatsuki IHA <e125716@ie.u-ryukyu.ac.jp>
date Wed, 18 Feb 2015 14:55:36 +0900
parents 54457678186b
children afa8332a0e37
comparison
equal deleted inserted replaced
78:af83660cff7b 83:60c9769439b8
38 38
39 private: 39 private:
40 friend struct InlineAsmKeyType; 40 friend struct InlineAsmKeyType;
41 friend class ConstantUniqueMap<InlineAsm>; 41 friend class ConstantUniqueMap<InlineAsm>;
42 42
43 InlineAsm(const InlineAsm &) LLVM_DELETED_FUNCTION; 43 InlineAsm(const InlineAsm &) = delete;
44 void operator=(const InlineAsm&) LLVM_DELETED_FUNCTION; 44 void operator=(const InlineAsm&) = delete;
45 45
46 std::string AsmString, Constraints; 46 std::string AsmString, Constraints;
47 bool HasSideEffects; 47 bool HasSideEffects;
48 bool IsAlignStack; 48 bool IsAlignStack;
49 AsmDialect Dialect; 49 AsmDialect Dialect;