diff options
author | malc <av1474@comtv.ru> | 2010-04-17 07:59:26 +0400 |
---|---|---|
committer | malc <av1474@comtv.ru> | 2010-04-17 08:00:41 +0400 |
commit | 655feed5d9889a0391023ee518bcba4dbd09438c (patch) | |
tree | 549626f94b4e3a8aad7abc25fc81c745817c15aa /tcg/tcg.c | |
parent | efe72c8de7b5f07bf8348d51ed4bb4f004e50748 (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.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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; |