From fa57c47f1b72916371a9c2d5c1389219bce655b4 Mon Sep 17 00:00:00 2001 From: buzbee Date: Wed, 21 Nov 2012 12:06:18 -0800 Subject: Quick Compiler: Shoot the Camel Another step towards moving the Quick Compiler from the old Dalvik coding style to Art's coding style. In this CL, Camel-case locals, struct variables and arguments are converted to lower-case with underscore names. Most of the name changes were formulistic, but I also took this opportunity to change the old "printMe" into the more traditional "verbose", and shorten cUnit to cu. No logic changes. Change-Id: I64b69b28a8357d5cc0abc1dc975954c91abd9b45 --- src/compiler/codegen/method_bitcode.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/compiler/codegen/method_bitcode.h') diff --git a/src/compiler/codegen/method_bitcode.h b/src/compiler/codegen/method_bitcode.h index 1d6a1c9f4c..df4f4d4a24 100644 --- a/src/compiler/codegen/method_bitcode.h +++ b/src/compiler/codegen/method_bitcode.h @@ -19,8 +19,8 @@ namespace art { -void MethodMIR2Bitcode(CompilationUnit* cUnit); -void MethodBitcode2LIR(CompilationUnit* cUnit); +void MethodMIR2Bitcode(CompilationUnit* cu); +void MethodBitcode2LIR(CompilationUnit* cu); } // namespace art -- cgit v1.2.3-59-g8ed1b