summaryrefslogtreecommitdiff
path: root/lib/AsmParser/LLLexer.cpp
diff options
context:
space:
mode:
authorDevang Patel <dpatel@apple.com>2009-06-04 22:05:33 +0000
committerDevang Patel <dpatel@apple.com>2009-06-04 22:05:33 +0000
commitd18e31ae17390d9c6f6cf93d18badf962452031d (patch)
treebf18aac26483ba94dfa71c81dc2f5d2fb2bbe517 /lib/AsmParser/LLLexer.cpp
parent4c9369df57a52cec5e1fc735e61a979766288074 (diff)
downloadllvm-d18e31ae17390d9c6f6cf93d18badf962452031d.tar.gz
llvm-d18e31ae17390d9c6f6cf93d18badf962452031d.tar.bz2
llvm-d18e31ae17390d9c6f6cf93d18badf962452031d.tar.xz
Add new function attribute - noredzone.
Update code generator to use this attribute and remove DisableRedZone target option. Update llc to set this attribute when -disable-red-zone command line option is used. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@72894 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/AsmParser/LLLexer.cpp')
-rw-r--r--lib/AsmParser/LLLexer.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/AsmParser/LLLexer.cpp b/lib/AsmParser/LLLexer.cpp
index f2e6890176..340cfe152f 100644
--- a/lib/AsmParser/LLLexer.cpp
+++ b/lib/AsmParser/LLLexer.cpp
@@ -547,6 +547,7 @@ lltok::Kind LLLexer::LexIdentifier() {
KEYWORD(optsize);
KEYWORD(ssp);
KEYWORD(sspreq);
+ KEYWORD(noredzone);
KEYWORD(type);
KEYWORD(opaque);