From: Richard Henderson Date: Tue, 9 Jul 2019 08:03:12 +0000 (+0200) Subject: tcg: Remove duplicate #if !defined(CODE_ACCESS) X-Git-Tag: v4.1.0-rc1~10^2~1 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=2fbb2353ce8d098e172cd25024fc221c1c8e3591;p=thirdparty%2Fqemu.git tcg: Remove duplicate #if !defined(CODE_ACCESS) This code block is already surrounded by #ifndef CODE_ACCESS. Reviewed-by: Alex Bennée Signed-off-by: Richard Henderson --- diff --git a/include/exec/cpu_ldst_useronly_template.h b/include/exec/cpu_ldst_useronly_template.h index 8c7a2c6cd70..d663826ac2b 100644 --- a/include/exec/cpu_ldst_useronly_template.h +++ b/include/exec/cpu_ldst_useronly_template.h @@ -118,11 +118,9 @@ static inline void glue(glue(cpu_st, SUFFIX), MEMSUFFIX)(CPUArchState *env, abi_ptr ptr, RES_TYPE v) { -#if !defined(CODE_ACCESS) trace_guest_mem_before_exec( env_cpu(env), ptr, trace_mem_build_info(SHIFT, false, MO_TE, true)); -#endif glue(glue(st, SUFFIX), _p)(g2h(ptr), v); }