diff options
author | Richard Henderson <rth@twiddle.net> | 2010-06-02 17:26:56 -0700 |
---|---|---|
committer | Aurelien Jarno <aurelien@aurel32.net> | 2010-06-09 11:18:26 +0200 |
commit | e4d58b41f9fb6d7ea8281fe42fd5e00db2fd1455 (patch) | |
tree | c7a2dae4399bde7b8cfb5698daa0e4df8af4dc8b /tcg/tcg.c | |
parent | 3b6dac34161bc0a342336072643c2f6d17e0ec45 (diff) |
tcg: Make some tcg-target.c routines static.
Both tcg_target_init and tcg_target_qemu_prologue
are unused outside of tcg.c.
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 | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -63,6 +63,8 @@ #error GUEST_BASE not supported on this host. #endif +static void tcg_target_init(TCGContext *s); +static void tcg_target_qemu_prologue(TCGContext *s); static void patch_reloc(uint8_t *code_ptr, int type, tcg_target_long value, tcg_target_long addend); |