Skip to content

Commit f3c7b89

Browse files
committed
Tweak format
1 parent cd1d712 commit f3c7b89

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

tools/rv_histogram.c

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,11 +38,14 @@ typedef struct {
3838
uint8_t reg_mask; /* 0x1=rs1, 0x2=rs2, 0x4=rs3, 0x8=rd */
3939
} rv_hist_t;
4040

41+
/* clang-format off */
4142
static rv_hist_t rv_insn_stats[] = {
4243
#define _(inst, can_branch, insn_len, reg_mask) {#inst, 0, reg_mask},
43-
RV_INSN_LIST _(unknown, 0, 0, 0)
44+
RV_INSN_LIST
45+
_(unknown, 0, 0, 0)
4446
#undef _
4547
};
48+
/* clang-format on */
4649

4750
static rv_hist_t rv_reg_stats[] = {
4851
#define _(reg) {#reg, 0},

0 commit comments

Comments
 (0)