diff options
author | Elliott Hughes <enh@google.com> | 2010-02-25 15:41:42 -0800 |
---|---|---|
committer | Elliott Hughes <enh@google.com> | 2010-02-25 15:41:42 -0800 |
commit | 6a55513b0d268bc0721834050a3698316854fa0a (patch) | |
tree | dd907b5b74bd56d793cc6e0cdd70e1a8820df703 /vm/compiler/codegen/arm/Thumb2 | |
parent | f76b01c6377ad4653dcdc37b2ca35db785219f80 (diff) | |
download | android_dalvik-6a55513b0d268bc0721834050a3698316854fa0a.tar.gz android_dalvik-6a55513b0d268bc0721834050a3698316854fa0a.tar.bz2 android_dalvik-6a55513b0d268bc0721834050a3698316854fa0a.zip |
Fix a couple of typos in JIT function names.
(I saw these the other day, but preferred a separate patch.)
Diffstat (limited to 'vm/compiler/codegen/arm/Thumb2')
-rw-r--r-- | vm/compiler/codegen/arm/Thumb2/Factory.c | 2 | ||||
-rw-r--r-- | vm/compiler/codegen/arm/Thumb2/Gen.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/vm/compiler/codegen/arm/Thumb2/Factory.c b/vm/compiler/codegen/arm/Thumb2/Factory.c index 0db2045d4..242e665ab 100644 --- a/vm/compiler/codegen/arm/Thumb2/Factory.c +++ b/vm/compiler/codegen/arm/Thumb2/Factory.c @@ -189,7 +189,7 @@ static ArmLIR *loadConstant(CompilationUnit *cUnit, int rDest, int value) { if (dvmCompilerIsTemp(cUnit, rDest)) { dvmCompilerClobber(cUnit, rDest); - dvmcompilerMarkInUse(cUnit, rDest); + dvmCompilerMarkInUse(cUnit, rDest); } return loadConstantValue(cUnit, rDest, value); } diff --git a/vm/compiler/codegen/arm/Thumb2/Gen.c b/vm/compiler/codegen/arm/Thumb2/Gen.c index dbce45284..8b2b69653 100644 --- a/vm/compiler/codegen/arm/Thumb2/Gen.c +++ b/vm/compiler/codegen/arm/Thumb2/Gen.c @@ -262,7 +262,7 @@ static void genMonitor(CompilationUnit *cUnit, MIR *mir) ArmLIR *target = newLIR0(cUnit, kArmPseudoTargetLabel); target->defMask = ENCODE_ALL; branchOver->generic.target = (LIR *) target; - dvmCompilerColbberCallRegs(cUnit); + dvmCompilerClobberCallRegs(cUnit); } // Resume here |