Re: [Qemu-devel] [PATCH] target-arm: Fix arm_excp_unmasked() function

2015-09-04 Thread Peter Maydell
On 2 September 2015 at 16:53, Sergey Sorokin wrote: > There is an error in arm_excp_unmasked() function: > bitwise operator & is used with integer and bool operands > causing an incorrect zeroed result. > The patch fixes it. > > Signed-off-by: Sergey Sorokin Applied to target-arm.next, thanks.

[Qemu-devel] [PATCH] target-arm: Fix arm_excp_unmasked() function

2015-09-02 Thread Sergey Sorokin
There is an error in arm_excp_unmasked() function: bitwise operator & is used with integer and bool operands causing an incorrect zeroed result. The patch fixes it. Signed-off-by: Sergey Sorokin --- target-arm/cpu.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/target