summary refs log tree commit diff stats
path: root/results/classifier/105/mistranslation/1119
diff options
context:
space:
mode:
Diffstat (limited to 'results/classifier/105/mistranslation/1119')
-rw-r--r--results/classifier/105/mistranslation/111928
1 files changed, 28 insertions, 0 deletions
diff --git a/results/classifier/105/mistranslation/1119 b/results/classifier/105/mistranslation/1119
new file mode 100644
index 00000000..35dfb0e9
--- /dev/null
+++ b/results/classifier/105/mistranslation/1119
@@ -0,0 +1,28 @@
+mistranslation: 0.998
+device: 0.916
+instruction: 0.900
+graphic: 0.892
+network: 0.839
+socket: 0.814
+vnc: 0.809
+semantic: 0.794
+other: 0.729
+KVM: 0.705
+boot: 0.585
+assembly: 0.482
+
+end_code set incorrectly
+Description of problem:
+https://github.com/qemu/qemu/blob/c99e34e537f13a431a80e3e414e5904e9dd0a116/linux-user/flatload.c#L811
+
+This line says:
+
+```
+info->end_code = libinfo[0].start_code = libinfo[0].text_len;
+```
+
+but should be
+
+```
+info->end_code = libinfo[0].start_code + libinfo[0].text_len;
+```