Commit a65b6597 by Richard Kenner

(scratch_list, scratch_block, scratch_list_length): New vars.

From-SVN: r4711
parent 6b46c090
/* Define per-register tables for data flow info and register allocation.
Copyright (C) 1987 Free Software Foundation, Inc.
Copyright (C) 1987, 1993 Free Software Foundation, Inc.
This file is part of GNU CC.
......@@ -146,3 +146,12 @@ extern int caller_save_needed;
#ifndef CALLER_SAVE_PROFITABLE
#define CALLER_SAVE_PROFITABLE(REFS, CALLS) (4 * (CALLS) < (REFS))
#endif
/* Allocated in local_alloc. */
/* A list of SCRATCH rtl allocated by local-alloc. */
extern rtx *scratch_list;
/* The basic block in which each SCRATCH is used. */
extern int *scratch_block;
/* The length of the arrays pointed to by scratch_block and scratch_list. */
extern int scratch_list_length;
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