diff options
| author | 2012-11-20 19:50:46 -0800 | |
|---|---|---|
| committer | 2012-11-20 21:38:31 -0800 | |
| commit | 52a77fc135f0e0df57ee24641c3f5ae415ff7bd6 (patch) | |
| tree | ddbe40349dce79bb89a6f2d68ddb4caf903b15e9 /src/compiler/codegen/local_optimizations.h | |
| parent | 024c463536180ce1e464bbb9853ab427dfac35f5 (diff) | |
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
Diffstat (limited to 'src/compiler/codegen/local_optimizations.h')
| -rw-r--r-- | src/compiler/codegen/local_optimizations.h | 4 |
1 files changed, 2 insertions, 2 deletions
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 |