linux-user/arm/signal.c: Drop TARGET_CONFIG_CPU_32
commitfafe7229272f39500c14845bc7ea60a8504a5a20
authorPeter Maydell <peter.maydell@linaro.org>
Mon, 18 May 2020 14:30:14 +0000 (18 15:30 +0100)
committerPeter Maydell <peter.maydell@linaro.org>
Thu, 21 May 2020 21:05:27 +0000 (21 22:05 +0100)
tree9737d447219d1a28ea9678d38502e439e23da0f0
parent45e2813964b135a11e0fb6371d2c5f48d901929e
linux-user/arm/signal.c: Drop TARGET_CONFIG_CPU_32

The Arm signal-handling code has some parts ifdeffed with a
TARGET_CONFIG_CPU_32, which is always defined. This is a leftover
from when this code's structure was based on the Linux kernel
signal handling code, where it was intended to support 26-bit
Arm CPUs. The kernel dropped its CONFIG_CPU_32 in kernel commit
4da8b8208eded0ba21e3 in 2009.

QEMU has never had 26-bit CPU support and is unlikely to ever
add it; we certainly aren't going to support 26-bit Linux
binaries via linux-user mode. The ifdef is just unhelpful
noise, so remove it entirely.

Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
Reviewed-by: Richard Henderson <richard.henderson@linaro.org>
Message-id: 20200518143014.20689-1-peter.maydell@linaro.org
linux-user/arm/signal.c