diff options
| author | Philippe Mathieu-Daudé <philmd@linaro.org> | 2023-02-06 23:34:56 +0100 |
|---|---|---|
| committer | Peter Maydell <peter.maydell@linaro.org> | 2023-02-16 16:00:47 +0000 |
| commit | de4143fc77fd33a01b651cd00fb4f20b65de359b (patch) | |
| tree | d31e05b81b9ca86d6377d58496d5d426a5d9a0cf /target/arm/cpu.h | |
| parent | 0f150c8499e970bd079a80394ccf65bcd7a54f12 (diff) | |
| download | focaccia-qemu-de4143fc77fd33a01b651cd00fb4f20b65de359b.tar.gz focaccia-qemu-de4143fc77fd33a01b651cd00fb4f20b65de359b.zip | |
target/arm: Convert CPUARMState::eabi to boolean
Suggested-by: Richard Henderson <richard.henderson@linaro.org> Signed-off-by: Philippe Mathieu-Daudé <philmd@linaro.org> Reviewed-by: Richard Henderson <richard.henderson@linaro.org> Message-id: 20230206223502.25122-6-philmd@linaro.org Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
Diffstat (limited to 'target/arm/cpu.h')
| -rw-r--r-- | target/arm/cpu.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/target/arm/cpu.h b/target/arm/cpu.h index 7bc97fece9..05b9012cee 100644 --- a/target/arm/cpu.h +++ b/target/arm/cpu.h @@ -723,7 +723,7 @@ typedef struct CPUArchState { #if defined(CONFIG_USER_ONLY) /* For usermode syscall translation. */ - int eabi; + bool eabi; #endif struct CPUBreakpoint *cpu_breakpoint[16]; |