mirror of https://github.com/xemu-project/xemu.git
tcg: Add missing static qualifier
Build breaks otherwise when USE_LIVENESS_ANALYSIS is not defined. Signed-off-by: malc <av1474@comtv.ru>
This commit is contained in:
parent
efe72c8de7
commit
655feed5d9
|
@ -1278,7 +1278,7 @@ static void tcg_liveness_analysis(TCGContext *s)
|
||||||
}
|
}
|
||||||
#else
|
#else
|
||||||
/* dummy liveness analysis */
|
/* dummy liveness analysis */
|
||||||
void tcg_liveness_analysis(TCGContext *s)
|
static void tcg_liveness_analysis(TCGContext *s)
|
||||||
{
|
{
|
||||||
int nb_ops;
|
int nb_ops;
|
||||||
nb_ops = gen_opc_ptr - gen_opc_buf;
|
nb_ops = gen_opc_ptr - gen_opc_buf;
|
||||||
|
|
Loading…
Reference in New Issue