]> gcc.gnu.org Git - gcc.git/commitdiff
(scratch_list, scratch_block, scratch_list_length): New vars.
authorRichard Kenner <kenner@gcc.gnu.org>
Wed, 23 Jun 1993 11:45:47 +0000 (07:45 -0400)
committerRichard Kenner <kenner@gcc.gnu.org>
Wed, 23 Jun 1993 11:45:47 +0000 (07:45 -0400)
From-SVN: r4711

gcc/regs.h

index 31158e728f31e4656b198fdb44052025615b07d0..009dac2e3670804a71293ea696067962bc0f13f0 100644 (file)
@@ -1,5 +1,5 @@
 /* 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;
This page took 0.069562 seconds and 5 git commands to generate.