summaryrefslogtreecommitdiff
path: root/include/llvm/LLVMContext.h
diff options
context:
space:
mode:
authorJakub Staszak <jstaszak@apple.com>2011-07-06 18:22:43 +0000
committerJakub Staszak <jstaszak@apple.com>2011-07-06 18:22:43 +0000
commit9da9934e27dfb48de77b80a3e20ed2d869b52024 (patch)
tree711368e52d6596eeb3273012758fe07e87213687 /include/llvm/LLVMContext.h
parentd7c7e2ff7d3305e4bc5634902ec4b8406e9cefca (diff)
downloadllvm-9da9934e27dfb48de77b80a3e20ed2d869b52024.tar.gz
llvm-9da9934e27dfb48de77b80a3e20ed2d869b52024.tar.bz2
llvm-9da9934e27dfb48de77b80a3e20ed2d869b52024.tar.xz
Introduce "expect" intrinsic instructions.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@134516 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm/LLVMContext.h')
-rw-r--r--include/llvm/LLVMContext.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/include/llvm/LLVMContext.h b/include/llvm/LLVMContext.h
index 3502ff73c1..65146c31aa 100644
--- a/include/llvm/LLVMContext.h
+++ b/include/llvm/LLVMContext.h
@@ -39,7 +39,8 @@ public:
// compile-time performance optimization, not a correctness optimization.
enum {
MD_dbg = 0, // "dbg"
- MD_tbaa = 1 // "tbaa"
+ MD_tbaa = 1, // "tbaa"
+ MD_prof = 2 // "prof"
};
/// getMDKindID - Return a unique non-zero ID for the specified metadata kind.