diff options
author | Chandler Carruth <chandlerc@gmail.com> | 2010-04-03 04:45:24 +0000 |
---|---|---|
committer | Chandler Carruth <chandlerc@gmail.com> | 2010-04-03 04:45:24 +0000 |
commit | 77074b1378037024dd65a890e227ceb8bc7f7ac5 (patch) | |
tree | 25e001e061bf3b78adfd17ecce4edfe8bf18a3f1 /llvm/utils/TableGen/ARMDecoderEmitter.cpp | |
parent | 89c787b9061668fea962f4881654197f131bfbc2 (diff) | |
download | bcm5719-llvm-77074b1378037024dd65a890e227ceb8bc7f7ac5.tar.gz bcm5719-llvm-77074b1378037024dd65a890e227ceb8bc7f7ac5.zip |
Fix a warning in GCC about a pointless typedef.
llvm-svn: 100268
Diffstat (limited to 'llvm/utils/TableGen/ARMDecoderEmitter.cpp')
-rw-r--r-- | llvm/utils/TableGen/ARMDecoderEmitter.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/utils/TableGen/ARMDecoderEmitter.cpp b/llvm/utils/TableGen/ARMDecoderEmitter.cpp index 4bb46026d45..5fb8b6bfb23 100644 --- a/llvm/utils/TableGen/ARMDecoderEmitter.cpp +++ b/llvm/utils/TableGen/ARMDecoderEmitter.cpp @@ -100,7 +100,7 @@ static const char *stringForARMFormat(ARMFormat form) { #undef ENTRY } -typedef enum { +enum { IndexModeNone = 0, IndexModePre = 1, IndexModePost = 2, |