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>
This commit is contained in:
Richard Henderson 2010-06-02 17:26:56 -07:00 committed by Aurelien Jarno
parent 3b6dac3416
commit e4d58b41f9
12 changed files with 22 additions and 23 deletions

View file

@ -84,12 +84,12 @@ static inline void tcg_out_op(TCGContext *s, TCGOpcode opc,
tcg_abort();
}
void tcg_target_init(TCGContext *s)
static void tcg_target_init(TCGContext *s)
{
/* gets called with KVM */
}
void tcg_target_qemu_prologue(TCGContext *s)
static void tcg_target_qemu_prologue(TCGContext *s)
{
/* gets called with KVM */
}