diff options
author | Richard Henderson <rth@twiddle.net> | 2013-09-14 15:09:39 -0700 |
---|---|---|
committer | Richard Henderson <rth@twiddle.net> | 2013-10-10 11:43:37 -0700 |
commit | 5cd8f6210f83db15702e81b91e40e7079608e6f3 (patch) | |
tree | 58399547f7c4a63b61f67aefc5db4805ca65728b /target-ppc | |
parent | e5e84d22a3c31a674f9bb1d9ffcb92c111e13421 (diff) |
tcg: Move helper registration into tcg_context_init
No longer needs to be done on a per-target basis.
Signed-off-by: Richard Henderson <rth@twiddle.net>
Diffstat (limited to 'target-ppc')
-rw-r--r-- | target-ppc/translate.c | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/target-ppc/translate.c b/target-ppc/translate.c index 9c59f69ee1..66c777174c 100644 --- a/target-ppc/translate.c +++ b/target-ppc/translate.c @@ -175,10 +175,6 @@ void ppc_translate_init(void) cpu_access_type = tcg_global_mem_new_i32(TCG_AREG0, offsetof(CPUPPCState, access_type), "access_type"); - /* register helpers */ -#define GEN_HELPER 2 -#include "helper.h" - done_init = 1; } |