Fix a warning in GCC about a pointless typedef.
authorChandler Carruth <chandlerc@gmail.com>
Sat, 3 Apr 2010 04:45:24 +0000 (04:45 +0000)
committerChandler Carruth <chandlerc@gmail.com>
Sat, 3 Apr 2010 04:45:24 +0000 (04:45 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@100268 91177308-0d34-0410-b5e6-96231b3b80d8

utils/TableGen/ARMDecoderEmitter.cpp

index 4bb46026d4508c07ccee6b4ea767a7d71e403bfd..5fb8b6bfb232658da9ae862ab30f9d3ef60232ee 100644 (file)
@@ -100,7 +100,7 @@ static const char *stringForARMFormat(ARMFormat form) {
 #undef ENTRY
 }
 
-typedef enum {
+enum {
   IndexModeNone = 0,
   IndexModePre  = 1,
   IndexModePost = 2,