summaryrefslogtreecommitdiff
path: root/include/exec/softmmu_template.h
diff options
context:
space:
mode:
authorRichard Henderson <rth@twiddle.net>2013-09-03 14:24:58 -0700
committerRichard Henderson <rth@twiddle.net>2013-10-10 11:44:25 -0700
commitdbdbe0cd3124a3e9afa2d1c11da7c6476097bb9d (patch)
treea0dc29246f3956957f7ef58730e9a147c08fc4d7 /include/exec/softmmu_template.h
parent023261ef851b22a04f6c5d76da870051031757a6 (diff)
downloadqemu-dbdbe0cd3124a3e9afa2d1c11da7c6476097bb9d.tar.gz
exec: Delete is_tcg_gen_code and GETRA_EXT
All implementations now boil down to GETRA. Signed-off-by: Richard Henderson <rth@twiddle.net>
Diffstat (limited to 'include/exec/softmmu_template.h')
-rw-r--r--include/exec/softmmu_template.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/exec/softmmu_template.h b/include/exec/softmmu_template.h
index 5bbc56afd5..5edac51709 100644
--- a/include/exec/softmmu_template.h
+++ b/include/exec/softmmu_template.h
@@ -172,7 +172,7 @@ glue(glue(helper_ld, SUFFIX), MMUSUFFIX)(CPUArchState *env, target_ulong addr,
int mmu_idx)
{
return glue(glue(helper_ret_ld, USUFFIX), MMUSUFFIX)(env, addr, mmu_idx,
- GETRA_EXT());
+ GETRA());
}
#ifndef SOFTMMU_CODE_ACCESS
@@ -285,7 +285,7 @@ glue(glue(helper_st, SUFFIX), MMUSUFFIX)(CPUArchState *env, target_ulong addr,
DATA_TYPE val, int mmu_idx)
{
glue(glue(helper_ret_st, SUFFIX), MMUSUFFIX)(env, addr, val, mmu_idx,
- GETRA_EXT());
+ GETRA());
}
#endif /* !defined(SOFTMMU_CODE_ACCESS) */