mirror of
https://github.com/qemu/qemu.git
synced 2025-08-07 23:16:19 +00:00
Remove leftover from previous way to load 64 bit constants
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@4958 c046a42c-6fe2-441c-8c8c-71466251a162
This commit is contained in:
parent
e9396bded9
commit
95153fde07
@ -439,7 +439,7 @@ static void tcg_out_movi (TCGContext *s, TCGType type,
|
|||||||
uint16_t h16 = arg >> 16;
|
uint16_t h16 = arg >> 16;
|
||||||
uint16_t l16 = arg;
|
uint16_t l16 = arg;
|
||||||
|
|
||||||
tcg_out_movi32 (s, ret, (arg >> 32) + (arg32 < 0));
|
tcg_out_movi32 (s, ret, arg >> 32);
|
||||||
tcg_out_rld (s, RLDICR, ret, ret, 32, 31);
|
tcg_out_rld (s, RLDICR, ret, ret, 32, 31);
|
||||||
if (h16) tcg_out32 (s, ORIS | RS (ret) | RA (ret) | h16);
|
if (h16) tcg_out32 (s, ORIS | RS (ret) | RA (ret) | h16);
|
||||||
if (l16) tcg_out32 (s, ORI | RS (ret) | RA (ret) | l16);
|
if (l16) tcg_out32 (s, ORI | RS (ret) | RA (ret) | l16);
|
||||||
|
Loading…
Reference in New Issue
Block a user