diff options
author | mycroft <mycroft@138bc75d-0d04-0410-961f-82ee72b054a4> | 1992-05-06 21:28:15 +0000 |
---|---|---|
committer | mycroft <mycroft@138bc75d-0d04-0410-961f-82ee72b054a4> | 1992-05-06 21:28:15 +0000 |
commit | 87a66107be6a6c7bc7648fff6275c7844bf351b8 (patch) | |
tree | bc2482322aad9ffa22307a374eb71ec68c894b46 /gcc/halfpic.h | |
parent | facbd9c0cc3b6af6441282cc77f42c1b2051d864 (diff) | |
download | gcc-87a66107be6a6c7bc7648fff6275c7844bf351b8.tar.gz |
entered into RCS
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@920 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/halfpic.h')
-rw-r--r-- | gcc/halfpic.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/gcc/halfpic.h b/gcc/halfpic.h index b972ff9d17d..3e509e5c253 100644 --- a/gcc/halfpic.h +++ b/gcc/halfpic.h @@ -18,6 +18,8 @@ along with GNU CC; see the file COPYING. If not, write to the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */ extern int flag_half_pic; /* Global half-pic flag. */ +extern int half_pic_number_ptrs; /* # distinct pointers found */ +extern int half_pic_number_refs; /* # half-pic references */ extern void half_pic_encode (); /* encode whether half-pic */ extern void half_pic_declare (); /* declare object local */ extern void half_pic_init (); /* half_pic initialization */ @@ -29,6 +31,9 @@ extern struct rtx_def *half_pic_ptr (); /* return RTX for half-pic pointer */ be stubbed out. */ #define HALF_PIC_P() (flag_half_pic) +#define HALF_PIC_NUMBER_PTRS (half_pic_number_ptrs) +#define HALF_PIC_NUMBER_REFS (half_pic_number_refs) + #define HALF_PIC_ENCODE(DECL) half_pic_encode (DECL) #define HALF_PIC_DECLARE(NAME) half_pic_declare (NAME) #define HALF_PIC_INIT() half_pic_init () |