summary refs log tree commit diff stats
path: root/results/scraper/launchpad-without-comments/1813460
diff options
context:
space:
mode:
Diffstat (limited to 'results/scraper/launchpad-without-comments/1813460')
-rw-r--r--results/scraper/launchpad-without-comments/181346011
1 files changed, 11 insertions, 0 deletions
diff --git a/results/scraper/launchpad-without-comments/1813460 b/results/scraper/launchpad-without-comments/1813460
new file mode 100644
index 00000000..814eacfc
--- /dev/null
+++ b/results/scraper/launchpad-without-comments/1813460
@@ -0,0 +1,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) {
\ No newline at end of file