Another instance where GCC doesn't understand implicit construction of StringLiteral.
authorBenjamin Kramer <benny.kra@googlemail.com>
Fri, 24 Mar 2017 14:17:56 +0000 (14:17 +0000)
committerBenjamin Kramer <benny.kra@googlemail.com>
Fri, 24 Mar 2017 14:17:56 +0000 (14:17 +0000)
llvm-svn: 298703

llvm/utils/TableGen/X86EVEX2VEXTablesEmitter.cpp

index d84f32a..07b96b0 100644 (file)
@@ -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;
   };