From a89a7e4da9ab9426f0a89ae9ea909b46d21354eb Mon Sep 17 00:00:00 2001 From: Michael Meissner Date: Wed, 6 Jan 1993 03:12:17 +0000 Subject: Fix unknown symbol error when linking gen* programs. From-SVN: r3110 --- gcc/halfpic.c | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) (limited to 'gcc/halfpic.c') diff --git a/gcc/halfpic.c b/gcc/halfpic.c index f691ce3..6447539 100644 --- a/gcc/halfpic.c +++ b/gcc/halfpic.c @@ -45,9 +45,10 @@ extern rtx eliminate_constant_term (); extern void assemble_name (); extern void output_addr_const (); -int flag_half_pic; /* Global half-pic flag. */ -int half_pic_number_ptrs; /* # distinct pointers found */ -int half_pic_number_refs; /* # half-pic references */ +int flag_half_pic = 0; /* Global half-pic flag. */ +int half_pic_number_ptrs = 0; /* # distinct pointers found */ +int half_pic_number_refs = 0; /* # half-pic references */ +int (*ptr_half_pic_address_p)() = half_pic_address_p; /* Obstack to hold generated pic names. */ static struct obstack half_pic_obstack; -- cgit v1.1