summary refs log tree commit diff stats
path: root/results/scraper/launchpad-without-comments/1813460
blob: 814eacfc379ae48f6e77baed44586baf02ff7c89 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
qemu/target/arm/translate-a64.c:2039: bad test ?

qemu/target/arm/translate-a64.c:2039]: (warning) Logical disjunction always evaluates to true: op3 != 2 || op3 != 3.

Source code is

       if (op3 != 2 || op3 != 3) {

Maybe better code

       if (op3 != 2 && op3 != 3) {