From 52a77fc135f0e0df57ee24641c3f5ae415ff7bd6 Mon Sep 17 00:00:00 2001 From: buzbee Date: Tue, 20 Nov 2012 19:50:46 -0800 Subject: Quick Compiler function renaming Move the Quick compiler's function naming to Art coding conventions. Will be done is pieces: names first, then arguments and locals. Also removed some dead code and marked statics for the top level source files No logic changes aside from eliminating a few useless exported "oat" routines. Change-Id: Iadaddc560942a0fc1199ba5b1c261cd6ac5cfd9a --- src/compiler/codegen/local_optimizations.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/compiler/codegen/local_optimizations.h') diff --git a/src/compiler/codegen/local_optimizations.h b/src/compiler/codegen/local_optimizations.h index 5f0c17b901..e740b1305c 100644 --- a/src/compiler/codegen/local_optimizations.h +++ b/src/compiler/codegen/local_optimizations.h @@ -19,8 +19,8 @@ namespace art { -void oatApplyLocalOptimizations(CompilationUnit* cUnit, LIR* headLIR, LIR* tailLIR); -void removeRedundantBranches(CompilationUnit* cUnit); +void ApplyLocalOptimizations(CompilationUnit* cUnit, LIR* headLIR, LIR* tailLIR); +void RemoveRedundantBranches(CompilationUnit* cUnit); } // namespace art -- cgit v1.2.3-59-g8ed1b