diff options
author | Bill Buzbee <buzbee@google.com> | 2010-03-25 10:38:34 -0700 |
---|---|---|
committer | Bill Buzbee <buzbee@google.com> | 2010-03-25 10:38:34 -0700 |
commit | 80cef8675b2ce54faa31e837b79db9f66d8e652c (patch) | |
tree | a5c29bdb4496cc2138b656a2f42b4a7237ff63f7 /vm/compiler/codegen/arm/Thumb2 | |
parent | f87ab9616697b8bae08c5e8007cbdd0039a1f8ce (diff) | |
download | android_dalvik-80cef8675b2ce54faa31e837b79db9f66d8e652c.tar.gz android_dalvik-80cef8675b2ce54faa31e837b79db9f66d8e652c.tar.bz2 android_dalvik-80cef8675b2ce54faa31e837b79db9f66d8e652c.zip |
Jit: Fix for 2542488 JIT codegen bug with overlapping wide operands
Change-Id: I7b922e223fe1f5242d1f3db1fa18f54aaed725af
Diffstat (limited to 'vm/compiler/codegen/arm/Thumb2')
-rw-r--r-- | vm/compiler/codegen/arm/Thumb2/Gen.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/vm/compiler/codegen/arm/Thumb2/Gen.c b/vm/compiler/codegen/arm/Thumb2/Gen.c index 8a574b3ca..93120d6e3 100644 --- a/vm/compiler/codegen/arm/Thumb2/Gen.c +++ b/vm/compiler/codegen/arm/Thumb2/Gen.c @@ -71,7 +71,7 @@ static void genMulLong(CompilationUnit *cUnit, RegLocation rlDest, storeValueWide(cUnit, rlDest, rlResult); } -static void genLong3Addr(CompilationUnit *cUnit, OpKind firstOp, +static void genLong3Addr(CompilationUnit *cUnit, MIR *mir, OpKind firstOp, OpKind secondOp, RegLocation rlDest, RegLocation rlSrc1, RegLocation rlSrc2) { |