diff options
| author | Richard Henderson | 2013-08-21 00:53:10 +0200 |
|---|---|---|
| committer | Richard Henderson | 2013-09-02 18:08:30 +0200 |
| commit | 8cfd04959a023f87e1e6727e608a20f168441370 (patch) | |
| tree | 0c9a90e5f8c206bd1aa704138d98554e452503e7 /target-cris | |
| parent | tcg: Use uintptr_t in TCGHelperInfo (diff) | |
| download | qemu-8cfd04959a023f87e1e6727e608a20f168441370.tar.gz qemu-8cfd04959a023f87e1e6727e608a20f168441370.tar.xz qemu-8cfd04959a023f87e1e6727e608a20f168441370.zip | |
tcg: Change tcg_gen_exit_tb argument to uintptr_t
And update all users.
Reviewed-by: Aurelien Jarno <aurelien@aurel32.net>
Signed-off-by: Richard Henderson <rth@twiddle.net>
Diffstat (limited to 'target-cris')
| -rw-r--r-- | target-cris/translate.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/target-cris/translate.c b/target-cris/translate.c index 2a4beeb869..617e1b4242 100644 --- a/target-cris/translate.c +++ b/target-cris/translate.c @@ -558,7 +558,7 @@ static void gen_goto_tb(DisasContext *dc, int n, target_ulong dest) if ((tb->pc & TARGET_PAGE_MASK) == (dest & TARGET_PAGE_MASK)) { tcg_gen_goto_tb(n); tcg_gen_movi_tl(env_pc, dest); - tcg_gen_exit_tb((tcg_target_long)tb + n); + tcg_gen_exit_tb((uintptr_t)tb + n); } else { tcg_gen_movi_tl(env_pc, dest); tcg_gen_exit_tb(0); |
