diff options
author | Bill Wendling <isanbard@gmail.com> | 2013-02-22 00:12:35 +0000 |
---|---|---|
committer | Bill Wendling <isanbard@gmail.com> | 2013-02-22 00:12:35 +0000 |
commit | 09bd1f71eeb2558f4e4516740328b9d5e9177500 (patch) | |
tree | dc6e3390cbedfe24b142aa0c0a510b66d268eb8e /llvm/lib/AsmParser/LLToken.h | |
parent | 5000f2dafffb665ff11303f1541cb191a9a4e460 (diff) | |
download | bcm5719-llvm-09bd1f71eeb2558f4e4516740328b9d5e9177500.tar.gz bcm5719-llvm-09bd1f71eeb2558f4e4516740328b9d5e9177500.zip |
Implement the NoBuiltin attribute.
The 'nobuiltin' attribute is applied to call sites to indicate that LLVM should
not treat the callee function as a built-in function. I.e., it shouldn't try to
replace that function with different code.
llvm-svn: 175835
Diffstat (limited to 'llvm/lib/AsmParser/LLToken.h')
-rw-r--r-- | llvm/lib/AsmParser/LLToken.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/llvm/lib/AsmParser/LLToken.h b/llvm/lib/AsmParser/LLToken.h index 97429b8ce5d..a51dadacf06 100644 --- a/llvm/lib/AsmParser/LLToken.h +++ b/llvm/lib/AsmParser/LLToken.h @@ -102,6 +102,7 @@ namespace lltok { kw_naked, kw_nest, kw_noalias, + kw_nobuiltin, kw_nocapture, kw_noduplicate, kw_noimplicitfloat, |