From fc0e5bd00e5a1f8573937fddf850d03e7d78d31c Mon Sep 17 00:00:00 2001 From: Richard Kenner Date: Fri, 27 May 1994 11:53:02 -0400 Subject: [PATCH] (local_alloc): Fix typo in last change. From-SVN: r7361 --- gcc/local-alloc.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gcc/local-alloc.c b/gcc/local-alloc.c index 107ab9c..a408719 100644 --- a/gcc/local-alloc.c +++ b/gcc/local-alloc.c @@ -422,9 +422,9 @@ local_alloc () qty_phys_reg = (short *) alloca (max_qty * sizeof (short)); qty_phys_copy_sugg = (HARD_REG_SET *) alloca (max_qty * sizeof (HARD_REG_SET)); - qty_phys_num_copy_sugg = (short *) alloca (max_qty * sizeof (char)); + qty_phys_num_copy_sugg = (short *) alloca (max_qty * sizeof (short)); qty_phys_sugg = (HARD_REG_SET *) alloca (max_qty * sizeof (HARD_REG_SET)); - qty_phys_num_sugg = (short *) alloca (max_qty * sizeof (char)); + qty_phys_num_sugg = (short *) alloca (max_qty * sizeof (short)); qty_birth = (int *) alloca (max_qty * sizeof (int)); qty_death = (int *) alloca (max_qty * sizeof (int)); qty_scratch_rtx = (rtx *) alloca (max_qty * sizeof (rtx)); -- 2.7.4