From f476e4b5982fc16fa2310b1d3bac9d84e637c4df Mon Sep 17 00:00:00 2001 From: Lioncash Date: Thu, 15 Mar 2018 23:10:18 -0400 Subject: [PATCH] target/mips: Add missing macro continuation backslash to user-only OP_ST_ATOMIC macro --- qemu/target/mips/translate.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/qemu/target/mips/translate.c b/qemu/target/mips/translate.c index b1423e3f..d8db0336 100644 --- a/qemu/target/mips/translate.c +++ b/qemu/target/mips/translate.c @@ -2092,7 +2092,7 @@ OP_LD_ATOMIC(lld,ld64); static inline void op_st_##insn(TCGv arg1, TCGv arg2, int rt, int mem_idx, \ DisasContext *ctx) \ { \ - struct uc_struct *uc = ctx->uc; + struct uc_struct *uc = ctx->uc; \ TCGContext *tcg_ctx = uc->tcg_ctx; \ TCGv t0 = tcg_temp_new(tcg_ctx); \ TCGLabel *l1 = gen_new_label(tcg_ctx); \