Re: [Qemu-devel] [PATCH] arm: Fix invalid assert logic in op_helper.c

2015-06-02 Thread Martin Kletzander
On Tue, Jun 02, 2015 at 09:10:23AM +0100, Peter Maydell wrote: On 2 June 2015 at 09:05, Martin Kletzander wrote: Boolean value '!arm_current_el(env)' can never be equal to 3. Fix it according to the comment above as currently the build fails with gcc-5.1.0. Signed-off-by: Martin Kletzander -

Re: [Qemu-devel] [PATCH] arm: Fix invalid assert logic in op_helper.c

2015-06-02 Thread Peter Maydell
On 2 June 2015 at 09:05, Martin Kletzander wrote: > Boolean value '!arm_current_el(env)' can never be equal to 3. Fix it > according to the comment above as currently the build fails with > gcc-5.1.0. > > Signed-off-by: Martin Kletzander > --- > target-arm/op_helper.c | 2 +- > 1 file changed,

[Qemu-devel] [PATCH] arm: Fix invalid assert logic in op_helper.c

2015-06-02 Thread Martin Kletzander
Boolean value '!arm_current_el(env)' can never be equal to 3. Fix it according to the comment above as currently the build fails with gcc-5.1.0. Signed-off-by: Martin Kletzander --- target-arm/op_helper.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/target-arm/op_helper.c