From 59c0b43d759ef7eb7877f437e3373c39be5d640d Mon Sep 17 00:00:00 2001 From: Tom Tromey Date: Fri, 14 Oct 2011 19:31:46 +0000 Subject: 2011-10-14 Alexey Makhalov * sim-alu.h (ALU32_AND): Clear carry flag. (ALU32_AND): Clear carry flag. --- sim/common/sim-alu.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'sim/common/sim-alu.h') diff --git a/sim/common/sim-alu.h b/sim/common/sim-alu.h index becc224..b851bea 100644 --- a/sim/common/sim-alu.h +++ b/sim/common/sim-alu.h @@ -1007,14 +1007,14 @@ do { \ #define ALU32_AND(VAL) \ do { \ alu32_r &= (VAL); \ - alu32_r = 0; \ + alu32_c = 0; \ alu32_v = 0; \ } while (0) #define ALU64_AND(VAL) \ do { \ alu64_r &= (VAL); \ - alu64_r = 0; \ + alu64_c = 0; \ alu64_v = 0; \ } while (0) -- cgit v1.1