qemu-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Qemu-devel] [Bug 1460523] [NEW] target-arm/op_helper.c:424: bad assert


From: dcb
Subject: [Qemu-devel] [Bug 1460523] [NEW] target-arm/op_helper.c:424: bad assert
Date: Mon, 01 Jun 2015 06:30:14 -0000

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

[Prev in Thread] Current Thread [Next in Thread]