diff options
Diffstat (limited to 'vm/compiler/codegen/x86/ia32/ArchVariant.h')
-rw-r--r-- | vm/compiler/codegen/x86/ia32/ArchVariant.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/vm/compiler/codegen/x86/ia32/ArchVariant.h b/vm/compiler/codegen/x86/ia32/ArchVariant.h index e4eebf3b4..c5ce38e28 100644 --- a/vm/compiler/codegen/x86/ia32/ArchVariant.h +++ b/vm/compiler/codegen/x86/ia32/ArchVariant.h @@ -19,7 +19,7 @@ /* Create the TemplateOpcode enum */ #define JIT_TEMPLATE(X) TEMPLATE_##X, -typedef enum { +enum TemplateOpcode { #include "../../../template/ia32/TemplateOpList.h" /* * For example, @@ -28,7 +28,7 @@ typedef enum { * ... */ TEMPLATE_LAST_MARK, -} TemplateOpcode; +}; #undef JIT_TEMPLATE #endif /* _DALVIK_VM_COMPILER_CODEGEN_X86_IA32_ARCHVARIANT_H */ |