summary refs log tree commit diff stats
path: root/results/classifier/118/none/1720971
diff options
context:
space:
mode:
authorChristian Krinitsin <mail@krinitsin.com>2025-06-16 16:59:00 +0000
committerChristian Krinitsin <mail@krinitsin.com>2025-06-16 16:59:33 +0000
commit9aba81d8eb048db908c94a3c40c25a5fde0caee6 (patch)
treeb765e7fb5e9a3c2143c68b0414e0055adb70e785 /results/classifier/118/none/1720971
parentb89a938452613061c0f1f23e710281cf5c83cb29 (diff)
downloademulator-bug-study-9aba81d8eb048db908c94a3c40c25a5fde0caee6.tar.gz
emulator-bug-study-9aba81d8eb048db908c94a3c40c25a5fde0caee6.zip
add 18th iteration of classifier
Diffstat (limited to 'results/classifier/118/none/1720971')
-rw-r--r--results/classifier/118/none/172097144
1 files changed, 44 insertions, 0 deletions
diff --git a/results/classifier/118/none/1720971 b/results/classifier/118/none/1720971
new file mode 100644
index 00000000..48b056a8
--- /dev/null
+++ b/results/classifier/118/none/1720971
@@ -0,0 +1,44 @@
+mistranslation: 0.726
+graphic: 0.586
+network: 0.573
+socket: 0.521
+device: 0.499
+kernel: 0.447
+ppc: 0.321
+x86: 0.303
+semantic: 0.301
+performance: 0.279
+vnc: 0.247
+hypervisor: 0.230
+i386: 0.225
+files: 0.198
+KVM: 0.185
+architecture: 0.174
+register: 0.169
+arm: 0.158
+user-level: 0.134
+risc-v: 0.127
+assembly: 0.123
+debug: 0.120
+TCG: 0.119
+boot: 0.118
+VMM: 0.111
+permissions: 0.096
+peripherals: 0.079
+virtual: 0.070
+PID: 0.068
+
+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.
+