avoid some 'has no effect' warnings in JIT macros
svn: r8210
This commit is contained in:
parent
77e126f085
commit
dfe1a79a69
|
@ -281,9 +281,9 @@ union jit_double_imm {
|
|||
PUSHLr(_EAX), \
|
||||
FNSTSWr(_EAX), \
|
||||
SHRLir(n, _EAX), \
|
||||
((_and) ? ANDLir ((_and), _EAX) : 0), \
|
||||
(void)((_and) ? ANDLir ((_and), _EAX) : 0), \
|
||||
((cmp) ? CMPLir ((cmp), _AL) : 0), \
|
||||
POPLr(_EAX), \
|
||||
(void) POPLr(_EAX), \
|
||||
res ((d), 0, 0, 0), _jit.x.pc)
|
||||
|
||||
#define jit_fp_test_fppop(d, n, _and, res) \
|
||||
|
@ -300,8 +300,8 @@ union jit_double_imm {
|
|||
PUSHLr(_EAX), \
|
||||
FNSTSWr(_EAX), \
|
||||
SHRLir(n, _EAX), \
|
||||
((_and) ? ANDLir ((_and), _EAX) : 0), \
|
||||
((cmp) ? CMPLir ((cmp), _AL) : 0), \
|
||||
(void)((_and) ? ANDLir ((_and), _EAX) : 0), \
|
||||
(void)((cmp) ? CMPLir ((cmp), _AL) : 0), \
|
||||
POPLr(_EAX), \
|
||||
res ((d), 0, 0, 0), _jit.x.pc)
|
||||
|
||||
|
|
Loading…
Reference in New Issue
Block a user