diff options
author | Dan Gohman <gohman@apple.com> | 2009-07-22 22:44:56 +0000 |
---|---|---|
committer | Dan Gohman <gohman@apple.com> | 2009-07-22 22:44:56 +0000 |
commit | 08d012eba490c4906ec773c39db9f2a18a78c997 (patch) | |
tree | ef05ab4b5cfa9dd455f4d6b406b4bbacdaeda956 /lib/AsmParser/LLLexer.cpp | |
parent | 92b78bbc7f2ee919a2d09ed00fd35d1eb7f5f548 (diff) |
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.cpp | 4 |
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); |