summary refs log tree commit diff stats
path: root/results/classifier/deepseek-2-tmp/output/assembly/1631625
diff options
context:
space:
mode:
Diffstat (limited to 'results/classifier/deepseek-2-tmp/output/assembly/1631625')
-rw-r--r--results/classifier/deepseek-2-tmp/output/assembly/163162516
1 files changed, 0 insertions, 16 deletions
diff --git a/results/classifier/deepseek-2-tmp/output/assembly/1631625 b/results/classifier/deepseek-2-tmp/output/assembly/1631625
deleted file mode 100644
index 9987cd848..000000000
--- a/results/classifier/deepseek-2-tmp/output/assembly/1631625
+++ /dev/null
@@ -1,16 +0,0 @@
-
-target-mips/dsp_helper.c: two possible bad shifts
-
-target-mips/dsp_helper.c:3480:1: error: V629 Consider inspecting the '0x01 << (size + 1)' expression. Bit shifting of the 32-bit value with a subsequent expansion to the 64-bit type.
-
-Source code is
-
-        temp = temp & ((0x01 << (size + 1)) - 1);
-
-If size >= 32, then better code might be
-
-        temp = temp & ((0x01UL << (size + 1)) - 1);
-
-target-mips/dsp_helper.c:3509:1: error: V629 Consider inspecting the '0x01 << (size + 1)' expression. Bit shifting of the 32-bit value with a subsequent expansion to the 64-bit type.
-
-Duplicate
\ No newline at end of file