From 12f2a44fa7581b6a61b732b885f454775c2845dd Mon Sep 17 00:00:00 2001 From: malc Date: Sat, 17 Apr 2010 07:59:26 +0400 Subject: [PATCH] tcg: Add missing static qualifier Build breaks otherwise when USE_LIVENESS_ANALYSIS is not defined. Signed-off-by: malc --- tcg/tcg.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tcg/tcg.c b/tcg/tcg.c index 3294743..6db96d0 100644 --- a/tcg/tcg.c +++ b/tcg/tcg.c @@ -1278,7 +1278,7 @@ static void tcg_liveness_analysis(TCGContext *s) } #else /* dummy liveness analysis */ -void tcg_liveness_analysis(TCGContext *s) +static void tcg_liveness_analysis(TCGContext *s) { int nb_ops; nb_ops = gen_opc_ptr - gen_opc_buf; -- 2.7.4