mirror of
https://github.com/yuzu-emu/unicorn.git
synced 2025-01-08 22:35:35 +00:00
target/mips: Add missing macro continuation backslash to user-only OP_ST_ATOMIC macro
This commit is contained in:
parent
2eef8bba67
commit
f476e4b598
|
@ -2092,7 +2092,7 @@ OP_LD_ATOMIC(lld,ld64);
|
||||||
static inline void op_st_##insn(TCGv arg1, TCGv arg2, int rt, int mem_idx, \
|
static inline void op_st_##insn(TCGv arg1, TCGv arg2, int rt, int mem_idx, \
|
||||||
DisasContext *ctx) \
|
DisasContext *ctx) \
|
||||||
{ \
|
{ \
|
||||||
struct uc_struct *uc = ctx->uc;
|
struct uc_struct *uc = ctx->uc; \
|
||||||
TCGContext *tcg_ctx = uc->tcg_ctx; \
|
TCGContext *tcg_ctx = uc->tcg_ctx; \
|
||||||
TCGv t0 = tcg_temp_new(tcg_ctx); \
|
TCGv t0 = tcg_temp_new(tcg_ctx); \
|
||||||
TCGLabel *l1 = gen_new_label(tcg_ctx); \
|
TCGLabel *l1 = gen_new_label(tcg_ctx); \
|
||||||
|
|
Loading…
Reference in a new issue