mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-06 09:13:55 -06:00
target/riscv: rename ext_icboz to ext_zicboz
Add a leading 'z' to improve grepping. When one wants to search for uses of zicboz they're more likely to do 'grep -i zicboz' than 'grep -i icboz'. Suggested-by: Andrew Jones <ajones@ventanamicro.com> Signed-off-by: Daniel Henrique Barboza <dbarboza@ventanamicro.com> Reviewed-by: Alistair Francis <alistair.francis@wdc.com> Reviewed-by: Andrew Jones <ajones@ventanamicro.com> Message-ID: <20231012164604.398496-5-dbarboza@ventanamicro.com> Signed-off-by: Alistair Francis <alistair.francis@wdc.com>
This commit is contained in:
parent
a326a2b0b2
commit
e57039ddab
5 changed files with 12 additions and 12 deletions
|
@ -22,10 +22,10 @@
|
|||
} \
|
||||
} while (0)
|
||||
|
||||
#define REQUIRE_ZICBOZ(ctx) do { \
|
||||
if (!ctx->cfg_ptr->ext_icboz) { \
|
||||
return false; \
|
||||
} \
|
||||
#define REQUIRE_ZICBOZ(ctx) do { \
|
||||
if (!ctx->cfg_ptr->ext_zicboz) { \
|
||||
return false; \
|
||||
} \
|
||||
} while (0)
|
||||
|
||||
static bool trans_cbo_clean(DisasContext *ctx, arg_cbo_clean *a)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue