mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-04 00:03:54 -06:00
target/riscv: Fix format for comments
Fix formats for multi-lines comments. Add spaces around single line comments(after "/*" and before "*/"). Signed-off-by: Weiwei Li <liweiwei@iscas.ac.cn> Signed-off-by: Junqiang Wang <wangjunqiang@iscas.ac.cn> Acked-by: Richard Henderson <richard.henderson@linaro.org> Reviewed-by: LIU Zhiwei <zhiwei_liu@linux.alibaba.com> Reviewed-by: Alistair Francis <alistair.francis@wdc.com> Reviewed-by: Daniel Henrique Barboza <dbarboza@ventanamicro.com> Message-Id: <20230405085813.40643-4-liweiwei@iscas.ac.cn> Signed-off-by: Alistair Francis <alistair.francis@wdc.com>
This commit is contained in:
parent
c45eff30cb
commit
3b57254d8a
11 changed files with 151 additions and 104 deletions
|
@ -3136,9 +3136,11 @@ static bool trans_vfirst_m(DisasContext *s, arg_rmr *a)
|
|||
return false;
|
||||
}
|
||||
|
||||
/* vmsbf.m set-before-first mask bit */
|
||||
/* vmsif.m set-includ-first mask bit */
|
||||
/* vmsof.m set-only-first mask bit */
|
||||
/*
|
||||
* vmsbf.m set-before-first mask bit
|
||||
* vmsif.m set-including-first mask bit
|
||||
* vmsof.m set-only-first mask bit
|
||||
*/
|
||||
#define GEN_M_TRANS(NAME) \
|
||||
static bool trans_##NAME(DisasContext *s, arg_rmr *a) \
|
||||
{ \
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue