summary refs log tree commit diff stats
path: root/results/scraper/launchpad-without-comments/1460523
blob: 06674a4359ae66842362252693ab2b4408d7bb58 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
target-arm/op_helper.c:424: bad assert

/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);