diff options
author | Bin Meng <bmeng@tinylab.org> | 2023-02-28 18:40:23 +0800 |
---|---|---|
committer | Palmer Dabbelt <palmer@rivosinc.com> | 2023-03-01 16:40:16 -0800 |
commit | a7e407b3f87329be533570351fc1658a7ba7b06f (patch) | |
tree | 0448c3aa2817dce0ff12a362b580ef667f95df3c /target | |
parent | 8c7feddddd9218b407792120bcfda0347ed16205 (diff) | |
download | qemu-a7e407b3f87329be533570351fc1658a7ba7b06f.zip qemu-a7e407b3f87329be533570351fc1658a7ba7b06f.tar.gz qemu-a7e407b3f87329be533570351fc1658a7ba7b06f.tar.bz2 |
target/riscv: Use 'bool' type for read_only
The read_only variable is currently declared as an 'int', but it
should really be a 'bool'.
Signed-off-by: Bin Meng <bmeng@tinylab.org>
Reviewed-by: Weiwei Li <liweiwei@iscas.ac.cn>
Reviewed-by: LIU Zhiwei <zhiwei_liu@linux.alibaba.com>
Message-ID: <20230228104035.1879882-8-bmeng@tinylab.org>
Signed-off-by: Palmer Dabbelt <palmer@rivosinc.com>
Diffstat (limited to 'target')
-rw-r--r-- | target/riscv/csr.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/target/riscv/csr.c b/target/riscv/csr.c index 6a82628..9264db6 100644 --- a/target/riscv/csr.c +++ b/target/riscv/csr.c @@ -3775,7 +3775,7 @@ static inline RISCVException riscv_csrrw_check(CPURISCVState *env, RISCVCPU *cpu) { /* check privileges and return RISCV_EXCP_ILLEGAL_INST if check fails */ - int read_only = get_field(csrno, 0xC00) == 3; + bool read_only = get_field(csrno, 0xC00) == 3; int csr_min_priv = csr_ops[csrno].min_priv_ver; /* ensure the CSR extension is enabled */ |