diff options
-rw-r--r-- | llvm/utils/TableGen/X86EVEX2VEXTablesEmitter.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/llvm/utils/TableGen/X86EVEX2VEXTablesEmitter.cpp b/llvm/utils/TableGen/X86EVEX2VEXTablesEmitter.cpp index d84f32ac92d..07b96b03b01 100644 --- a/llvm/utils/TableGen/X86EVEX2VEXTablesEmitter.cpp +++ b/llvm/utils/TableGen/X86EVEX2VEXTablesEmitter.cpp @@ -38,8 +38,8 @@ class X86EVEX2VEXTablesEmitter { // Represents a manually added entry to the tables struct ManualEntry { - StringLiteral EVEXInstStr; - StringLiteral VEXInstStr; + const char *EVEXInstStr; + const char *VEXInstStr; bool Is128Bit; }; |