* compile.c (sim_resume): Fix the handling of bxor.
This commit is contained in:
parent
539559676b
commit
ad4cda162b
@ -1,3 +1,7 @@
|
||||
2003-01-31 Kazu Hirata <kazu@cs.umass.edu>
|
||||
|
||||
* compile.c (sim_resume): Fix the handling of bxor.
|
||||
|
||||
2003-01-16 Michael Snyder <msnyder@redhat.com>
|
||||
|
||||
* compile.c: Change K&R function definitions to ISO.
|
||||
|
@ -1505,7 +1505,7 @@ sim_resume (SIM_DESC sd, int step, int siggnal)
|
||||
OBITOP (O_BIAND, 1, 0, c = !(ea & m) && C);
|
||||
OBITOP (O_BOR, 1, 0, c = (ea & m) || C);
|
||||
OBITOP (O_BIOR, 1, 0, c = !(ea & m) || C);
|
||||
OBITOP (O_BXOR, 1, 0, c = (ea & m) != C);
|
||||
OBITOP (O_BXOR, 1, 0, c = ((ea & m) != 0) != C);
|
||||
OBITOP (O_BIXOR, 1, 0, c = !(ea & m) != C);
|
||||
|
||||
#define MOP(bsize, signed) \
|
||||
|
Loading…
x
Reference in New Issue
Block a user