From f6d104b33a351e4205a87cd0ea1ddcfca55e941a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Alex=20Benn=C3=A9e?= Date: Tue, 13 Feb 2018 14:20:25 -0500 Subject: [PATCH] target-arm/cpu.h: remove pending_exception This isn't used by any of the code. In fact it looks like it was never used as it came in with ARMv7 support. Backports commit a79e0218e0ae27c9cdd2648bd46e5a916c903cc2 from qemu --- qemu/target-arm/cpu.h | 1 - 1 file changed, 1 deletion(-) diff --git a/qemu/target-arm/cpu.h b/qemu/target-arm/cpu.h index 68ff1cf3..91e99a7c 100644 --- a/qemu/target-arm/cpu.h +++ b/qemu/target-arm/cpu.h @@ -388,7 +388,6 @@ typedef struct CPUARMState { uint32_t control; int current_sp; int exception; - int pending_exception; uint32_t secure; /* Is CPU in Secure state? (not guest visible) */ } v7m;