aboutsummaryrefslogtreecommitdiff
path: root/gcc/function.h
diff options
context:
space:
mode:
authorZack Weinberg <zack@gcc.gnu.org>2003-02-14 05:42:30 +0000
committerZack Weinberg <zack@gcc.gnu.org>2003-02-14 05:42:30 +0000
commitddb0ae00a2fefc266ad0cd0fa12de4368c23e97a (patch)
tree4b9df061474023e56306cab98f5146192dd5654b /gcc/function.h
parentc20b55c0cfd2fc6e22bd8cc1d027839d53a5048a (diff)
downloadgcc-ddb0ae00a2fefc266ad0cd0fa12de4368c23e97a.zip
gcc-ddb0ae00a2fefc266ad0cd0fa12de4368c23e97a.tar.gz
gcc-ddb0ae00a2fefc266ad0cd0fa12de4368c23e97a.tar.bz2
emit-rtl.c (init_emit): Use ggc_alloc for regno_reg_rtx.
* emit-rtl.c (init_emit): Use ggc_alloc for regno_reg_rtx. * function.h (struct emit_status): Length of regno_pointer_align and x_regno_reg_rtx as seen by gengtype is only x_reg_rtx_no, not regno_pointer_align_length (i.e. length actually used, not length as allocated) * config/i386/i386.c (struct stack_local_entry): New. (struct machine_function): Replace huge array with alist. (assign_386_stack_local): Change to match. From-SVN: r62891
Diffstat (limited to 'gcc/function.h')
-rw-r--r--gcc/function.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/function.h b/gcc/function.h
index 22bb9da..d92b815 100644
--- a/gcc/function.h
+++ b/gcc/function.h
@@ -97,7 +97,7 @@ struct emit_status GTY(())
/* Indexed by pseudo register number, if nonzero gives the known alignment
for that pseudo (if REG_POINTER is set in x_regno_reg_rtx).
Allocated in parallel with x_regno_reg_rtx. */
- unsigned char * GTY ((length ("%h.regno_pointer_align_length")))
+ unsigned char * GTY ((length ("%h.x_reg_rtx_no")))
regno_pointer_align;
/* Indexed by pseudo register number, gives the rtx for that pseudo.
@@ -105,7 +105,7 @@ struct emit_status GTY(())
Note MEM expressions can appear in this array due to the actions
of put_var_into_stack. */
- rtx * GTY ((length ("%h.regno_pointer_align_length"))) x_regno_reg_rtx;
+ rtx * GTY ((length ("%h.x_reg_rtx_no"))) x_regno_reg_rtx;
};
/* For backward compatibility... eventually these should all go away. */