summaryrefslogtreecommitdiff
path: root/src/compiler/codegen/local_optimizations.h
diff options
context:
space:
mode:
author buzbee <buzbee@google.com> 2012-11-21 12:06:18 -0800
committer buzbee <buzbee@google.com> 2012-11-21 12:35:29 -0800
commitfa57c47f1b72916371a9c2d5c1389219bce655b4 (patch)
tree3ca3bc1cb3c91545f6c3514af296213348c09a99 /src/compiler/codegen/local_optimizations.h
parentaad94383fc41e8f8770f0b2144f766a2ffa772e7 (diff)
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
Diffstat (limited to 'src/compiler/codegen/local_optimizations.h')
-rw-r--r--src/compiler/codegen/local_optimizations.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/compiler/codegen/local_optimizations.h b/src/compiler/codegen/local_optimizations.h
index e740b1305c..74bae15162 100644
--- a/src/compiler/codegen/local_optimizations.h
+++ b/src/compiler/codegen/local_optimizations.h
@@ -19,8 +19,8 @@
namespace art {
-void ApplyLocalOptimizations(CompilationUnit* cUnit, LIR* headLIR, LIR* tailLIR);
-void RemoveRedundantBranches(CompilationUnit* cUnit);
+void ApplyLocalOptimizations(CompilationUnit* cu, LIR* head_lir, LIR* tail_lir);
+void RemoveRedundantBranches(CompilationUnit* cu);
} // namespace art