| commit | 77074b1378037024dd65a890e227ceb8bc7f7ac5 | [log] [tgz] |
|---|---|---|
| author | Chandler Carruth <chandlerc@gmail.com> | Sat Apr 03 04:45:24 2010 +0000 |
| committer | Chandler Carruth <chandlerc@gmail.com> | Sat Apr 03 04:45:24 2010 +0000 |
| tree | 25e001e061bf3b78adfd17ecce4edfe8bf18a3f1 | |
| parent | 89c787b9061668fea962f4881654197f131bfbc2 [diff] |
Fix a warning in GCC about a pointless typedef. llvm-svn: 100268
diff --git a/llvm/utils/TableGen/ARMDecoderEmitter.cpp b/llvm/utils/TableGen/ARMDecoderEmitter.cpp index 4bb4602..5fb8b6b 100644 --- a/llvm/utils/TableGen/ARMDecoderEmitter.cpp +++ b/llvm/utils/TableGen/ARMDecoderEmitter.cpp
@@ -100,7 +100,7 @@ #undef ENTRY } -typedef enum { +enum { IndexModeNone = 0, IndexModePre = 1, IndexModePost = 2,