diff options
author | 2014-06-03 20:56:27 +0000 | |
---|---|---|
committer | 2014-06-03 20:56:28 +0000 | |
commit | ca9da5090a946331ca5e72a39c6f70721d3b326c (patch) | |
tree | a63657b373fbb29653e650d930cefdd6ac2b4807 | |
parent | 18e6cf15644a11c1ef5e500667e6e24675d3eecd (diff) | |
parent | d44f1a6027b04c0d080089e6a8d87a4d19b5933f (diff) |
Merge "Correct another RegStorage::Solo32"
-rw-r--r-- | compiler/dex/quick/x86/utility_x86.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/dex/quick/x86/utility_x86.cc b/compiler/dex/quick/x86/utility_x86.cc index 092e68e6b4..618b3a5987 100644 --- a/compiler/dex/quick/x86/utility_x86.cc +++ b/compiler/dex/quick/x86/utility_x86.cc @@ -572,7 +572,7 @@ LIR* X86Mir2Lir::LoadConstantWide(RegStorage r_dest, int64_t value) { if (val_lo == 0) { res = NewLIR2(kX86XorpsRR, low_reg_val, low_reg_val); } else { - res = LoadConstantNoClobber(RegStorage::Solo32(low_reg_val), val_lo); + res = LoadConstantNoClobber(RegStorage::FloatSolo32(low_reg_val), val_lo); } if (val_hi != 0) { RegStorage r_dest_hi = AllocTempDouble(); |