summaryrefslogtreecommitdiffstats
path: root/results/classifier/105/mistranslation/1720971
diff options
context:
space:
mode:
Diffstat (limited to 'results/classifier/105/mistranslation/1720971')
-rw-r--r--results/classifier/105/mistranslation/172097127
1 files changed, 27 insertions, 0 deletions
diff --git a/results/classifier/105/mistranslation/1720971 b/results/classifier/105/mistranslation/1720971
new file mode 100644
index 00000000..14243846
--- /dev/null
+++ b/results/classifier/105/mistranslation/1720971
@@ -0,0 +1,27 @@
+mistranslation: 0.726
+graphic: 0.586
+network: 0.573
+other: 0.551
+socket: 0.521
+device: 0.499
+instruction: 0.335
+semantic: 0.301
+vnc: 0.247
+KVM: 0.185
+assembly: 0.123
+boot: 0.118
+
+qemu/hw/block/onenand.c:522: strange if statement ?
+
+[qemu/hw/block/onenand.c:523]: (warning) Opposite inner 'if' condition leads to a dead code block.
+
+Source code is
+
+ for (b = 0; b < s->blocks; b ++) {
+ if (b >= s->blocks) {
+ s->status |= ONEN_ERR_CMD;
+ break;
+ }
+
+Inner if condition will never be true.
+