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