]> granicus.if.org Git - llvm/commitdiff
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)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@298703 91177308-0d34-0410-b5e6-96231b3b80d8

utils/TableGen/X86EVEX2VEXTablesEmitter.cpp

index d84f32ac92de517b9c35a4e51c0939057e8edb11..07b96b03b01cc627edf2dc942c6e0b077a382586 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;
   };