diff options
author | Philippe Mathieu-Daudé <philmd@linaro.org> | 2023-10-04 11:06:20 +0200 |
---|---|---|
committer | Paolo Bonzini <pbonzini@redhat.com> | 2023-10-07 19:02:33 +0200 |
commit | 7893e42d5d9cafeeab30a114e8ec86517f8a1b36 (patch) | |
tree | 3c347d9ad5fd9c9c7b519cdb96e23991feaaf105 /target/riscv | |
parent | c2646d49588d834c2bcc050539053074ac43d4ba (diff) | |
download | qemu-7893e42d5d9cafeeab30a114e8ec86517f8a1b36.zip qemu-7893e42d5d9cafeeab30a114e8ec86517f8a1b36.tar.gz qemu-7893e42d5d9cafeeab30a114e8ec86517f8a1b36.tar.bz2 |
tcg: Correct invalid mentions of 'softmmu' by 'system-mode'
Signed-off-by: Philippe Mathieu-Daudé <philmd@linaro.org>
Message-ID: <20231004090629.37473-6-philmd@linaro.org>
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
Diffstat (limited to 'target/riscv')
-rw-r--r-- | target/riscv/vector_helper.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/target/riscv/vector_helper.c b/target/riscv/vector_helper.c index cba02c1..c9b39fb 100644 --- a/target/riscv/vector_helper.c +++ b/target/riscv/vector_helper.c @@ -100,7 +100,7 @@ static inline target_ulong adjust_addr(CPURISCVState *env, target_ulong addr) /* * This function checks watchpoint before real load operation. * - * In softmmu mode, the TLB API probe_access is enough for watchpoint check. + * In system mode, the TLB API probe_access is enough for watchpoint check. * In user mode, there is no watchpoint support now. * * It will trigger an exception if there is no mapping in TLB |