diff options
author | Nuno Lopes <nunoplopes@sapo.pt> | 2012-06-18 23:34:26 +0000 |
---|---|---|
committer | Nuno Lopes <nunoplopes@sapo.pt> | 2012-06-18 23:34:26 +0000 |
commit | f6fc855a00b57786a7a9132095165575a5e45312 (patch) | |
tree | 8b9da0476de4b0d35aa6509ec99d8396d78143a7 /include/llvm | |
parent | 90420105964371571ccacdf47771c6ca05db2e67 (diff) |
revert r158660, since Chris has some issues with this patch (namely using code to reprent information only used by the compiler)
Original commit msg:
add the 'alloc' metadata node to represent the size of offset of buffers pointed to by pointers.
This metadata can be attached to any instruction returning a pointer
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@158688 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm')
-rw-r--r-- | include/llvm/LLVMContext.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/include/llvm/LLVMContext.h b/include/llvm/LLVMContext.h index d15f3e0850..a8306a9e76 100644 --- a/include/llvm/LLVMContext.h +++ b/include/llvm/LLVMContext.h @@ -43,8 +43,7 @@ public: MD_tbaa = 1, // "tbaa" MD_prof = 2, // "prof" MD_fpmath = 3, // "fpmath" - MD_range = 4, // "range" - MD_alloc = 5 // "alloc" + MD_range = 4 // "range" }; /// getMDKindID - Return a unique non-zero ID for the specified metadata kind. |