[llvm] r199194 - Remove stray comma in enum to satisfy -Wpedantic.

Craig Topper craig.topper at gmail.com
Tue Jan 14 00:07:10 PST 2014


Author: ctopper
Date: Tue Jan 14 02:07:10 2014
New Revision: 199194

URL: http://llvm.org/viewvc/llvm-project?rev=199194&view=rev
Log:
Remove stray comma in enum to satisfy -Wpedantic.

Modified:
    llvm/trunk/utils/TableGen/X86RecognizableInstr.cpp

Modified: llvm/trunk/utils/TableGen/X86RecognizableInstr.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/utils/TableGen/X86RecognizableInstr.cpp?rev=199194&r1=199193&r2=199194&view=diff
==============================================================================
--- llvm/trunk/utils/TableGen/X86RecognizableInstr.cpp (original)
+++ llvm/trunk/utils/TableGen/X86RecognizableInstr.cpp Tue Jan 14 02:07:10 2014
@@ -80,7 +80,7 @@ namespace X86Local {
     XD = 11,  XS = 12,
     T8 = 13,  P_TA = 14,
     A6 = 15,  A7 = 16, T8XD = 17, T8XS = 18, TAXD = 19,
-    XOP8 = 20, XOP9 = 21, XOPA = 22, PD = 23, T8PD = 24, TAPD = 25,
+    XOP8 = 20, XOP9 = 21, XOPA = 22, PD = 23, T8PD = 24, TAPD = 25
   };
 }
 





More information about the llvm-commits mailing list