- fix ASR shifts with IMM value (fix Monster Truck DS);
This commit is contained in:
mtabachenko 2012-12-24 00:31:15 +00:00
parent 97ddd12360
commit 887f78a0d0
1 changed files with 1 additions and 1 deletions

View File

@ -479,7 +479,7 @@ static GPVar bb_profiler_entry;
c.mov(rhs, reg_pos_ptr(0)); \ c.mov(rhs, reg_pos_ptr(0)); \
if (!imm) imm = 31; \ if (!imm) imm = 31; \
c.sar(rhs, imm); \ c.sar(rhs, imm); \
c.sets(rcf.r8Lo()); imm==31?c.sets(rcf.r8Lo()):c.setc(rcf.r8Lo());
#define ROR_IMM \ #define ROR_IMM \
JIT_COMMENT("ROR_IMM"); \ JIT_COMMENT("ROR_IMM"); \