From adfe846aa98d4eed1b19bc8cee5e1769b022b5f0 Mon Sep 17 00:00:00 2001 From: Josh Triplett Date: Fri, 20 Apr 2007 01:47:36 -0700 Subject: [PATCH] compile-i386.c: Declare regs_in_use static Signed-off-by: Josh Triplett --- compile-i386.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/compile-i386.c b/compile-i386.c index 74f56a1f..a6c4431b 100644 --- a/compile-i386.c +++ b/compile-i386.c @@ -249,7 +249,7 @@ static struct storage hardreg_storage_table[] = { #define REG_AL (&hardreg_storage_table[AL]) #define REG_AX (&hardreg_storage_table[AX]) -DECLARE_BITMAP(regs_in_use, 256); +static DECLARE_BITMAP(regs_in_use, 256); static inline struct storage * reginfo_reg(struct reg_info *info) { -- 2.11.4.GIT