aboutsummaryrefslogtreecommitdiff
path: root/tcg/tcg.c
diff options
context:
space:
mode:
authormalc <av1474@comtv.ru>2010-04-17 07:59:26 +0400
committermalc <av1474@comtv.ru>2010-04-17 08:00:41 +0400
commit655feed5d9889a0391023ee518bcba4dbd09438c (patch)
tree549626f94b4e3a8aad7abc25fc81c745817c15aa /tcg/tcg.c
parentefe72c8de7b5f07bf8348d51ed4bb4f004e50748 (diff)
tcg: Add missing static qualifier
Build breaks otherwise when USE_LIVENESS_ANALYSIS is not defined. Signed-off-by: malc <av1474@comtv.ru>
Diffstat (limited to 'tcg/tcg.c')
-rw-r--r--tcg/tcg.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/tcg/tcg.c b/tcg/tcg.c
index 329474363d..6db96d09bf 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;