blob: 14c18dbac28773aaf7b4f8d34eb31c98844cb491 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
|
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;
|