summary refs log tree commit diff stats
path: root/results/classifier/gemma3:12b/other/1625987
blob: ce40737e4f66448bdbc93be6e32bb19a1bab496c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
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;