@samitouri / QOSamiQemu / commits / fc5a32f593

target/arm: fix WFET typo in syndrome

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 <richard.henderson@linaro.org> Signed-off-by: Alex Bennée <alex.bennee@linaro.org> Message-id: 20260529082948.363931-2-alex.bennee@linaro.org Signed-off-by: Peter Maydell <peter.maydell@linaro.org>

Alex Bennée committed May 29, 2026 at 09:29 UTC fc5a32f59359ebc3748c4aa1da83f433e83f8e81
1 file changed +1 -1
target/arm/syndrome.h
+1 -1
@@ -674,7 +674,7 @@ typedef enum {
674 WFI = 0b00,
675 WFE = 0b01,
676 WFIT = 0b10,
677 - WFET = 0xb11
677 + WFET = 0b11
678 } wfx_ti;
679
680 static inline uint32_t syn_wfx(int cv, int cond, int rn, bool rv, wfx_ti ti, bool is_16bit)