summaryrefslogtreecommitdiff
path: root/lib/AsmParser/LLLexer.cpp
diff options
context:
space:
mode:
authorDan Gohman <gohman@apple.com>2009-07-22 22:44:56 +0000
committerDan Gohman <gohman@apple.com>2009-07-22 22:44:56 +0000
commit08d012eba490c4906ec773c39db9f2a18a78c997 (patch)
treeef05ab4b5cfa9dd455f4d6b406b4bbacdaeda956 /lib/AsmParser/LLLexer.cpp
parent92b78bbc7f2ee919a2d09ed00fd35d1eb7f5f548 (diff)
downloadllvm-08d012eba490c4906ec773c39db9f2a18a78c997.tar.gz
llvm-08d012eba490c4906ec773c39db9f2a18a78c997.tar.bz2
llvm-08d012eba490c4906ec773c39db9f2a18a78c997.tar.xz
Rename the new unsigned and signed keywords to nuw and nsw,
which stand for no-unsigned-wrap and no-signed-wrap. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@76810 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/AsmParser/LLLexer.cpp')
-rw-r--r--lib/AsmParser/LLLexer.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/AsmParser/LLLexer.cpp b/lib/AsmParser/LLLexer.cpp
index 313213cb48..e047002c13 100644
--- a/lib/AsmParser/LLLexer.cpp
+++ b/lib/AsmParser/LLLexer.cpp
@@ -501,8 +501,8 @@ lltok::Kind LLLexer::LexIdentifier() {
KEYWORD(deplibs);
KEYWORD(datalayout);
KEYWORD(volatile);
- KEYWORD(signed);
- KEYWORD(unsigned);
+ KEYWORD(nuw);
+ KEYWORD(nsw);
KEYWORD(exact);
KEYWORD(align);
KEYWORD(addrspace);