X-Git-Url: http://demsky.eecs.uci.edu/git/?a=blobdiff_plain;f=include%2Fllvm%2FIR%2FLLVMContext.h;h=e6c22090ab6d8044dd57e93c5d5b86d3765d0789;hb=4dd3b8704809dbb3664fa9787d396b3988550be7;hp=672bf15b14755bac398cd50ad7cd00b164fc3dbf;hpb=c14fb896803930ccf22d3ae6af0a013575b3b5c0;p=oota-llvm.git diff --git a/include/llvm/IR/LLVMContext.h b/include/llvm/IR/LLVMContext.h index 672bf15b147..e6c22090ab6 100644 --- a/include/llvm/IR/LLVMContext.h +++ b/include/llvm/IR/LLVMContext.h @@ -55,7 +55,12 @@ public: MD_tbaa_struct = 5, // "tbaa.struct" MD_invariant_load = 6, // "invariant.load" MD_alias_scope = 7, // "alias.scope" - MD_noalias = 8 // "noalias" + MD_noalias = 8, // "noalias", + MD_nontemporal = 9, // "nontemporal" + MD_mem_parallel_loop_access = 10, // "llvm.mem.parallel_loop_access" + MD_nonnull = 11, // "nonnull" + MD_dereferenceable = 12, // "dereferenceable" + MD_dereferenceable_or_null = 13 // "dereferenceable_or_null" }; /// getMDKindID - Return a unique non-zero ID for the specified metadata kind. @@ -173,8 +178,8 @@ public: } private: - LLVMContext(LLVMContext&) LLVM_DELETED_FUNCTION; - void operator=(LLVMContext&) LLVM_DELETED_FUNCTION; + LLVMContext(LLVMContext&) = delete; + void operator=(LLVMContext&) = delete; /// addModule - Register a module as being instantiated in this context. If /// the context is deleted, the module will be deleted as well.