aboutsummaryrefslogtreecommitdiff
path: root/gcc/local-alloc.c
diff options
context:
space:
mode:
authorRichard Kenner <kenner@gcc.gnu.org>1994-05-27 11:53:02 -0400
committerRichard Kenner <kenner@gcc.gnu.org>1994-05-27 11:53:02 -0400
commitfc0e5bd00e5a1f8573937fddf850d03e7d78d31c (patch)
tree5fa8d1302cfc0b12760bb7df23cdf04b4f7f59b3 /gcc/local-alloc.c
parent5c72c15e2ec72b8be36d9b8b6cc23468d1594373 (diff)
downloadgcc-fc0e5bd00e5a1f8573937fddf850d03e7d78d31c.zip
gcc-fc0e5bd00e5a1f8573937fddf850d03e7d78d31c.tar.gz
gcc-fc0e5bd00e5a1f8573937fddf850d03e7d78d31c.tar.bz2
(local_alloc): Fix typo in last change.
From-SVN: r7361
Diffstat (limited to 'gcc/local-alloc.c')
-rw-r--r--gcc/local-alloc.c4
1 files 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));