diff options
Diffstat (limited to 'llvm/utils')
| -rw-r--r-- | llvm/utils/TableGen/AsmMatcherEmitter.cpp | 1 | 
1 files changed, 1 insertions, 0 deletions
| diff --git a/llvm/utils/TableGen/AsmMatcherEmitter.cpp b/llvm/utils/TableGen/AsmMatcherEmitter.cpp index b9031b1561c..082b1c5f3e9 100644 --- a/llvm/utils/TableGen/AsmMatcherEmitter.cpp +++ b/llvm/utils/TableGen/AsmMatcherEmitter.cpp @@ -776,6 +776,7 @@ static std::string getEnumNameForToken(StringRef Str) {      case '%': Res += "_PCT_"; break;      case ':': Res += "_COLON_"; break;      case '!': Res += "_EXCLAIM_"; break; +    case '.': Res += "_DOT_"; break;      default:        if (isalnum(*it))          Res += *it; | 

