mirror of
https://github.com/espressif/binutils-gdb.git
synced 2025-06-28 15:18:37 +08:00
2011-10-14 Alexey Makhalov <makhaloff@gmail.com>
* sim-alu.h (ALU32_AND): Clear carry flag. (ALU32_AND): Clear carry flag.
This commit is contained in:
@ -1,3 +1,8 @@
|
|||||||
|
2011-10-14 Alexey Makhalov <makhaloff@gmail.com>
|
||||||
|
|
||||||
|
* sim-alu.h (ALU32_AND): Clear carry flag.
|
||||||
|
(ALU32_AND): Clear carry flag.
|
||||||
|
|
||||||
2011-10-09 Mike Frysinger <vapier@gentoo.org>
|
2011-10-09 Mike Frysinger <vapier@gentoo.org>
|
||||||
|
|
||||||
* dv-cfi.c: Include stdbool.h.
|
* dv-cfi.c: Include stdbool.h.
|
||||||
|
@ -1007,14 +1007,14 @@ do { \
|
|||||||
#define ALU32_AND(VAL) \
|
#define ALU32_AND(VAL) \
|
||||||
do { \
|
do { \
|
||||||
alu32_r &= (VAL); \
|
alu32_r &= (VAL); \
|
||||||
alu32_r = 0; \
|
alu32_c = 0; \
|
||||||
alu32_v = 0; \
|
alu32_v = 0; \
|
||||||
} while (0)
|
} while (0)
|
||||||
|
|
||||||
#define ALU64_AND(VAL) \
|
#define ALU64_AND(VAL) \
|
||||||
do { \
|
do { \
|
||||||
alu64_r &= (VAL); \
|
alu64_r &= (VAL); \
|
||||||
alu64_r = 0; \
|
alu64_c = 0; \
|
||||||
alu64_v = 0; \
|
alu64_v = 0; \
|
||||||
} while (0)
|
} while (0)
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user