]> Git Repo - qemu.git/commitdiff
tcg: Remove duplicate #if !defined(CODE_ACCESS)
authorRichard Henderson <[email protected]>
Tue, 9 Jul 2019 08:03:12 +0000 (10:03 +0200)
committerRichard Henderson <[email protected]>
Sun, 14 Jul 2019 10:19:01 +0000 (12:19 +0200)
This code block is already surrounded by #ifndef CODE_ACCESS.

Reviewed-by: Alex BennĂ©e <[email protected]>
Signed-off-by: Richard Henderson <[email protected]>
include/exec/cpu_ldst_useronly_template.h

index 8c7a2c6cd70f798d12d6e17344907e8be0d347d2..d663826ac2bc1395a895eeaf55712d5141082e78 100644 (file)
@@ -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);
 }
 
This page took 0.023443 seconds and 4 git commands to generate.