diff options
author | Richard Henderson <richard.henderson@linaro.org> | 2022-04-30 22:49:57 -0700 |
---|---|---|
committer | Peter Maydell <peter.maydell@linaro.org> | 2022-05-05 09:35:51 +0100 |
commit | 4c8c4541156c957498183f1ce1d5f3d97e3576c2 (patch) | |
tree | 231c580bab02a82f737a20ae3005dbe39ec820af /target/arm | |
parent | cc946d96694e47d30c59dbf20f79f53522cc8265 (diff) | |
download | qemu-4c8c4541156c957498183f1ce1d5f3d97e3576c2.zip qemu-4c8c4541156c957498183f1ce1d5f3d97e3576c2.tar.gz qemu-4c8c4541156c957498183f1ce1d5f3d97e3576c2.tar.bz2 |
target/arm: Use bool for is64 and ns in add_cpreg_to_hashtable
Bool is a more appropriate type for these variables.
Signed-off-by: Richard Henderson <richard.henderson@linaro.org>
Reviewed-by: Peter Maydell <peter.maydell@linaro.org>
Message-id: 20220501055028.646596-16-richard.henderson@linaro.org
Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
Diffstat (limited to 'target/arm')
-rw-r--r-- | target/arm/helper.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/target/arm/helper.c b/target/arm/helper.c index 8ee96d5..bba010d 100644 --- a/target/arm/helper.c +++ b/target/arm/helper.c @@ -8507,8 +8507,8 @@ static void add_cpreg_to_hashtable(ARMCPU *cpu, const ARMCPRegInfo *r, */ uint32_t key; ARMCPRegInfo *r2; - int is64 = (r->type & ARM_CP_64BIT) ? 1 : 0; - int ns = (secstate & ARM_CP_SECSTATE_NS) ? 1 : 0; + bool is64 = r->type & ARM_CP_64BIT; + bool ns = secstate & ARM_CP_SECSTATE_NS; int cp = r->cp; size_t name_len; |