diff options
Diffstat (limited to 'results/classifier/deepseek-2-tmp/output/mistranslation/1813460')
| -rw-r--r-- | results/classifier/deepseek-2-tmp/output/mistranslation/1813460 | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/results/classifier/deepseek-2-tmp/output/mistranslation/1813460 b/results/classifier/deepseek-2-tmp/output/mistranslation/1813460 new file mode 100644 index 000000000..fcc2f4061 --- /dev/null +++ b/results/classifier/deepseek-2-tmp/output/mistranslation/1813460 @@ -0,0 +1,12 @@ + +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 |