QEMU-Devel Archive mirror
 help / color / mirror / Atom feed
* [Qemu-devel] [Bug 1460523] [NEW] target-arm/op_helper.c:424: bad assert
@ 2015-06-01  6:30 dcb
  2015-06-02  8:53 ` [Qemu-devel] [Bug 1460523] " Michael Tokarev
                   ` (2 more replies)
  0 siblings, 3 replies; 4+ messages in thread
From: dcb @ 2015-06-01  6:30 UTC (permalink / raw
  To: qemu-devel

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

^ permalink raw reply	[flat|nested] 4+ messages in thread

* [Qemu-devel] [Bug 1460523] Re: target-arm/op_helper.c:424: bad assert
  2015-06-01  6:30 [Qemu-devel] [Bug 1460523] [NEW] target-arm/op_helper.c:424: bad assert dcb
@ 2015-06-02  8:53 ` Michael Tokarev
  2015-06-03 18:29 ` Michael Tokarev
  2016-06-20 18:15 ` T. Huth
  2 siblings, 0 replies; 4+ messages in thread
From: Michael Tokarev @ 2015-06-02  8:53 UTC (permalink / raw
  To: qemu-devel

** Changed in: qemu
       Status: New => In Progress

-- 
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:
  In Progress

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

^ permalink raw reply	[flat|nested] 4+ messages in thread

* [Qemu-devel] [Bug 1460523] Re: target-arm/op_helper.c:424: bad assert
  2015-06-01  6:30 [Qemu-devel] [Bug 1460523] [NEW] target-arm/op_helper.c:424: bad assert dcb
  2015-06-02  8:53 ` [Qemu-devel] [Bug 1460523] " Michael Tokarev
@ 2015-06-03 18:29 ` Michael Tokarev
  2016-06-20 18:15 ` T. Huth
  2 siblings, 0 replies; 4+ messages in thread
From: Michael Tokarev @ 2015-06-03 18:29 UTC (permalink / raw
  To: qemu-devel

Fixed by commit 3fc827d591679f3e262b9d1f8b34528eabfca8c0

** Changed in: qemu
       Status: In Progress => Fix Committed

-- 
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:
  Fix Committed

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

^ permalink raw reply	[flat|nested] 4+ messages in thread

* [Qemu-devel] [Bug 1460523] Re: target-arm/op_helper.c:424: bad assert
  2015-06-01  6:30 [Qemu-devel] [Bug 1460523] [NEW] target-arm/op_helper.c:424: bad assert dcb
  2015-06-02  8:53 ` [Qemu-devel] [Bug 1460523] " Michael Tokarev
  2015-06-03 18:29 ` Michael Tokarev
@ 2016-06-20 18:15 ` T. Huth
  2 siblings, 0 replies; 4+ messages in thread
From: T. Huth @ 2016-06-20 18:15 UTC (permalink / raw
  To: qemu-devel

** Changed in: qemu
       Status: Fix Committed => Fix Released

-- 
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:
  Fix Released

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

^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2016-06-20 18:20 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-06-01  6:30 [Qemu-devel] [Bug 1460523] [NEW] target-arm/op_helper.c:424: bad assert dcb
2015-06-02  8:53 ` [Qemu-devel] [Bug 1460523] " Michael Tokarev
2015-06-03 18:29 ` Michael Tokarev
2016-06-20 18:15 ` T. Huth

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).