diff options
Diffstat (limited to 'results/classifier/gemma3:12b/other/1625987')
| -rw-r--r-- | results/classifier/gemma3:12b/other/1625987 | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/results/classifier/gemma3:12b/other/1625987 b/results/classifier/gemma3:12b/other/1625987 new file mode 100644 index 00000000..ce40737e --- /dev/null +++ b/results/classifier/gemma3:12b/other/1625987 @@ -0,0 +1,12 @@ + +target-arm/translate-a64.c:2028: possible coding error ? + +target-arm/translate-a64.c:2028:37: warning: ?: using integer constants in boolean context [-Wint-in-bool-context] + +Source code is + + bool iss_sf = opc == 0 ? 32 : 64; + +Maybe better code + + bool iss_sf = (opc == 0) ? 32 : 64; \ No newline at end of file |