mistranslation: 0.928 semantic: 0.627 device: 0.580 instruction: 0.488 socket: 0.484 graphic: 0.418 network: 0.397 assembly: 0.342 boot: 0.340 KVM: 0.333 vnc: 0.319 other: 0.288 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; This is clearly a bug, but your suggested change won't deal with the problem, which is that we're trying to set a bool so the ? 32 : 64 construct is just wrong. On 22 September 2016 at 02:53, Peter Maydell