Public bug reported:

/home/dcb/qemu/trunk/qemu/target-arm/op_helper.c: In function 
‘helper_access_check_cp_reg’:
/home/dcb/qemu/trunk/qemu/target-arm/op_helper.c:424:52: error: comparison of 
constant ‘3’ with boolean expression is always false [-Werror=bool-compare]
         assert(!arm_is_secure(env) && !arm_current_el(env) == 3);
                                                    ^

Maybe

 assert(!arm_is_secure(env) && arm_current_el(env)  != 3);

** Affects: qemu
     Importance: Undecided
         Status: New

-- 
You received this bug notification because you are a member of qemu-
devel-ml, which is subscribed to QEMU.
https://bugs.launchpad.net/bugs/1460523

Title:
  target-arm/op_helper.c:424: bad assert

Status in QEMU:
  New

Bug description:
  /home/dcb/qemu/trunk/qemu/target-arm/op_helper.c: In function 
‘helper_access_check_cp_reg’:
  /home/dcb/qemu/trunk/qemu/target-arm/op_helper.c:424:52: error: comparison of 
constant ‘3’ with boolean expression is always false [-Werror=bool-compare]
           assert(!arm_is_secure(env) && !arm_current_el(env) == 3);
                                                      ^

  Maybe

   assert(!arm_is_secure(env) && arm_current_el(env)  != 3);

To manage notifications about this bug go to:
https://bugs.launchpad.net/qemu/+bug/1460523/+subscriptions

Reply via email to