Commit 431b1786 by Charles Hannum

entered into RCS

From-SVN: r920
parent 1d3fc420
......@@ -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 ()
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment