(local_alloc): Fix typo in last change.
authorRichard Kenner <kenner@gcc.gnu.org>
Fri, 27 May 1994 15:53:02 +0000 (11:53 -0400)
committerRichard Kenner <kenner@gcc.gnu.org>
Fri, 27 May 1994 15:53:02 +0000 (11:53 -0400)
From-SVN: r7361

gcc/local-alloc.c

index 107ab9c4f3e0ce8a0425e50c9a40d5847da9e195..a4087198e65687efde2d43398cd70e47cbfaf7b5 100644 (file)
@@ -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));