diff options
-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(); |