diff options
author | 2014-06-03 16:05:37 -0400 | |
---|---|---|
committer | 2014-06-03 16:05:37 -0400 | |
commit | d44f1a6027b04c0d080089e6a8d87a4d19b5933f (patch) | |
tree | 4b7c2781ab7b1c36a2f9e1bbea08ece333b7a650 | |
parent | c24234e9d6fea3d6d5451aa4fa14ca0c6e63f8bd (diff) |
Correct another RegStorage::Solo32
It should be RegStorage::FloatSolo32
Change-Id: Iadfc6654254e5a1d117b35cc2d88ceb7057cc30d
Signed-off-by: Mark Mendell <mark.p.mendell@intel.com>
-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 ee0225738a..b2e289bfc3 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(); |