From: Bill Wendling Date: Thu, 18 Nov 2010 23:36:54 +0000 (+0000) Subject: Give the exclamation point a name instead of a number. X-Git-Url: http://plrg.eecs.uci.edu/git/?a=commitdiff_plain;h=bd9c77bc9ad384d046a7967d160ad96f61916d9d;p=oota-llvm.git Give the exclamation point a name instead of a number. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@119759 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/utils/TableGen/AsmMatcherEmitter.cpp b/utils/TableGen/AsmMatcherEmitter.cpp index 248ce4f72b2..27529a86b74 100644 --- a/utils/TableGen/AsmMatcherEmitter.cpp +++ b/utils/TableGen/AsmMatcherEmitter.cpp @@ -766,6 +766,7 @@ static std::string getEnumNameForToken(StringRef Str) { case '*': Res += "_STAR_"; break; case '%': Res += "_PCT_"; break; case ':': Res += "_COLON_"; break; + case '!': Res += "_EXCLAIM_"; break; default: if (isalnum(*it)) Res += *it;