Skip to content

Commit

Permalink
Actually fixed formating (hopefully)
Browse files Browse the repository at this point in the history
  • Loading branch information
mariospaok4 committed Feb 13, 2025
1 parent f33e638 commit 4549c91
Showing 1 changed file with 10 additions and 12 deletions.
22 changes: 10 additions & 12 deletions core/arch/emit_utils_shared.c
Original file line number Diff line number Diff line change
Expand Up @@ -2180,19 +2180,17 @@ emit_fcache_enter_common(dcontext_t *dcontext, generated_code_t *code, byte *pc,
opnd_create_reg(DR_REG_X0), opnd_create_reg(DR_REG_X1)));
#elif defined(RISCV64)
APP(&ilist,
INSTR_CREATE_ld(
dcontext, opnd_create_reg(DR_REG_A0),
opnd_create_base_disp(
REG_DCXT, DR_REG_NULL, 0,
DCONTEXT_ACTUAL_TO_TLS_OFFSET((int)REG_OFFSET(DR_REG_A0)),
OPSZ_8)));
INSTR_CREATE_ld(dcontext, opnd_create_reg(DR_REG_A0),
opnd_create_base_disp(
REG_DCXT, DR_REG_NULL, 0,
DCONTEXT_ACTUAL_TO_TLS_OFFSET((int)REG_OFFSET(DR_REG_A0)),
OPSZ_8)));
APP(&ilist,
INSTR_CREATE_ld(
dcontext, opnd_create_reg(DR_REG_A1),
opnd_create_base_disp(
REG_DCXT, DR_REG_NULL, 0,
DCONTEXT_ACTUAL_TO_TLS_OFFSET((int)REG_OFFSET(DR_REG_A1)),
OPSZ_8)));
INSTR_CREATE_ld(dcontext, opnd_create_reg(DR_REG_A1),
opnd_create_base_disp(
REG_DCXT, DR_REG_NULL, 0,
DCONTEXT_ACTUAL_TO_TLS_OFFSET((int)REG_OFFSET(DR_REG_A1)),
OPSZ_8)));

APP(&ilist,
INSTR_CREATE_sd(
Expand Down

0 comments on commit 4549c91

Please sign in to comment.