diff options
| author | 2011-10-04 14:32:18 -0700 | |
|---|---|---|
| committer | 2011-10-05 09:22:57 -0700 | |
| commit | ce30293d222c864fa281da98bc896dd1c98a9a16 (patch) | |
| tree | b56c3a7f8be3349aa50c78675e6959e51344938d /src/compiler/codegen/arm/ArmRallocUtil.cc | |
| parent | 20cde9033d51103f31e21436e88f80e1170c78ad (diff) | |
Compiler cleanup
o Added slow path for string resolution
o Removed dead throw internal and runtime error
o Restructured debug and optimization disable flags for make it easier
for command-line option support.
o Removed/converted #if 1/0 blocks
Change-Id: I65fc561a55437b3f74d0dfff5af87f938008d70e
Diffstat (limited to 'src/compiler/codegen/arm/ArmRallocUtil.cc')
| -rw-r--r-- | src/compiler/codegen/arm/ArmRallocUtil.cc | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/src/compiler/codegen/arm/ArmRallocUtil.cc b/src/compiler/codegen/arm/ArmRallocUtil.cc index 9a7c642aee..94852e391f 100644 --- a/src/compiler/codegen/arm/ArmRallocUtil.cc +++ b/src/compiler/codegen/arm/ArmRallocUtil.cc @@ -178,11 +178,6 @@ extern void oatDoPromotion(CompilationUnit* cUnit) qsort(coreRegs, numRegs, sizeof(RefCounts), sortCounts); qsort(fpRegs, numRegs, sizeof(RefCounts), sortCounts); - if (cUnit->printMeVerbose) { - dumpCounts(coreRegs, numRegs, "coreRegs"); - dumpCounts(fpRegs, numRegs, "fpRegs"); - } - if (!(cUnit->disableOpt & (1 << kPromoteRegs))) { // Promote fpRegs for (int i = 0; (fpRegs[i].count > 0) && (i < numRegs); i++) { |