summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorPeter Collingbourne <peter@pcc.me.uk>2011-10-27 19:19:14 +0000
committerPeter Collingbourne <peter@pcc.me.uk>2011-10-27 19:19:14 +0000
commit999f90bedf94e7d55508f0797802b75064f1de09 (patch)
tree75288530684cb01a05ecfcef75c747900943458c /include
parent249d953ed7b850446fdfc600992ffb221da2f9d3 (diff)
downloadllvm-999f90bedf94e7d55508f0797802b75064f1de09.tar.gz
llvm-999f90bedf94e7d55508f0797802b75064f1de09.tar.bz2
llvm-999f90bedf94e7d55508f0797802b75064f1de09.tar.xz
Add a pinned metadata name for fpaccuracy, and document it
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@143135 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include')
-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 65146c31aa..1c5063011d 100644
--- a/include/llvm/LLVMContext.h
+++ b/include/llvm/LLVMContext.h
@@ -40,7 +40,8 @@ public:
enum {
MD_dbg = 0, // "dbg"
MD_tbaa = 1, // "tbaa"
- MD_prof = 2 // "prof"
+ MD_prof = 2, // "prof"
+ MD_fpaccuracy = 3 // "fpaccuracy"
};
/// getMDKindID - Return a unique non-zero ID for the specified metadata kind.