From 375fb116bcb817b37509ab579dbd55cdbb765cbf Mon Sep 17 00:00:00 2001 From: Carl Shapiro Date: Tue, 14 Jun 2011 20:31:24 -0700 Subject: Normalize the include guard style. An leading underscore followed by a capital letter is a reserved name space in C and C++. This change also moves any #include directives within the include guard in some of the compiler/codegen/arm header files. Change-Id: I9715e2c5301699d31886e61d0fe6e29483555a2a --- vm/compiler/codegen/x86/ia32/ArchVariant.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'vm/compiler/codegen/x86/ia32') diff --git a/vm/compiler/codegen/x86/ia32/ArchVariant.h b/vm/compiler/codegen/x86/ia32/ArchVariant.h index c5ce38e28..f1c21d32c 100644 --- a/vm/compiler/codegen/x86/ia32/ArchVariant.h +++ b/vm/compiler/codegen/x86/ia32/ArchVariant.h @@ -14,8 +14,8 @@ * limitations under the License. */ -#ifndef _DALVIK_VM_COMPILER_CODEGEN_X86_IA32_ARCHVARIANT_H -#define _DALVIK_VM_COMPILER_CODEGEN_X86_IA32_ARCHVARIANT_H +#ifndef DALVIK_VM_COMPILER_CODEGEN_X86_IA32_ARCHVARIANT_H_ +#define DALVIK_VM_COMPILER_CODEGEN_X86_IA32_ARCHVARIANT_H_ /* Create the TemplateOpcode enum */ #define JIT_TEMPLATE(X) TEMPLATE_##X, @@ -31,4 +31,4 @@ enum TemplateOpcode { }; #undef JIT_TEMPLATE -#endif /* _DALVIK_VM_COMPILER_CODEGEN_X86_IA32_ARCHVARIANT_H */ +#endif // DALVIK_VM_COMPILER_CODEGEN_X86_IA32_ARCHVARIANT_H_ -- cgit v1.2.3