diff options
| author | Richard Henderson <rth@twiddle.net> | 2010-05-06 08:50:41 -0700 |
|---|---|---|
| committer | Aurelien Jarno <aurelien@aurel32.net> | 2010-05-21 18:41:21 +0200 |
| commit | 9002ec794e8154ff774270cf9fac5f850a1c5751 (patch) | |
| tree | 2944aa4e144835c7e0da805cdb33252f4ea3749e /tcg/tcg.c | |
| parent | a5b3b13bedc545b5e571480b9cf47d2d378ad193 (diff) | |
| download | focaccia-qemu-9002ec794e8154ff774270cf9fac5f850a1c5751.tar.gz focaccia-qemu-9002ec794e8154ff774270cf9fac5f850a1c5751.zip | |
tcg: Initialize the prologue after GUEST_BASE is fixed.
This will allow backends to make intelligent choices about how to implement GUEST_BASE. Signed-off-by: Richard Henderson <rth@twiddle.net> Signed-off-by: Aurelien Jarno <aurelien@aurel32.net>
Diffstat (limited to 'tcg/tcg.c')
| -rw-r--r-- | tcg/tcg.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/tcg/tcg.c b/tcg/tcg.c index a99ecb9a9e..880e7ceef9 100644 --- a/tcg/tcg.c +++ b/tcg/tcg.c @@ -240,7 +240,10 @@ void tcg_context_init(TCGContext *s) } tcg_target_init(s); +} +void tcg_prologue_init(TCGContext *s) +{ /* init global prologue and epilogue */ s->code_buf = code_gen_prologue; s->code_ptr = s->code_buf; |