A stray x slipped in and we didn't notice! Fortunately we haven't implemented WFET yet so nothing is affected. But we are about to so lets fix it. Fixes: 4575da5ecb7 (target/arm: report register in WFIT syndromes) Reviewed-by: Richard Henderson Signed-off-by: Alex Bennée --- v7 - mention how we got away with it --- target/arm/syndrome.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/target/arm/syndrome.h b/target/arm/syndrome.h index 4d1f1c529e2..0eb54c15ce7 100644 --- a/target/arm/syndrome.h +++ b/target/arm/syndrome.h @@ -674,7 +674,7 @@ typedef enum { WFI = 0b00, WFE = 0b01, WFIT = 0b10, - WFET = 0xb11 + WFET = 0b11 } wfx_ti; static inline uint32_t syn_wfx(int cv, int cond, int rn, bool rv, wfx_ti ti, bool is_16bit) -- 2.47.3