Fix a warning in GCC about a pointless typedef.


git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@100268 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/utils/TableGen/ARMDecoderEmitter.cpp b/utils/TableGen/ARMDecoderEmitter.cpp
index 4bb4602..5fb8b6b 100644
--- a/utils/TableGen/ARMDecoderEmitter.cpp
+++ b/utils/TableGen/ARMDecoderEmitter.cpp
@@ -100,7 +100,7 @@
 #undef ENTRY
 }
 
-typedef enum {
+enum {
   IndexModeNone = 0,
   IndexModePre  = 1,
   IndexModePost = 2,