]> gcc.gnu.org Git - gcc.git/commitdiff
flow.c (print_rtl_with_bb): Cast alloca return values for variables start and end.
authorPhilippe De Muyter <phdm@info.ucl.ac.be>
Sun, 28 Sep 1997 07:52:39 +0000 (09:52 +0200)
committerJeff Law <law@gcc.gnu.org>
Sun, 28 Sep 1997 07:52:39 +0000 (01:52 -0600)
        * flow.c (print_rtl_with_bb): Cast alloca return values for variables
        start and end.

From-SVN: r15753

gcc/ChangeLog
gcc/flow.c

index de41b1e189337a81bc397fc3c0762e84e10a773f..b326a90796b76d9a247c990fe167f55485b7d2b4 100644 (file)
@@ -1,3 +1,8 @@
+Sun Sep 28 01:55:04 1997  Philippe De Muyter  <phdm@info.ucl.ac.be>
+
+       * flow.c (print_rtl_with_bb): Cast alloca return values for variables
+       start and end.
+
 Sun Sep 28 01:05:16 1997  Jeffrey A Law  (law@cygnus.com)
 
        * frame.c: Remove last change.
index c6de5825861da3c6e1e919a06d9d2de5484f6396..f1774dc33293822173f65b7a792adca5a17c9c18 100644 (file)
@@ -2870,8 +2870,8 @@ print_rtl_with_bb (outf, rtx_first)
       int i, bb;
       enum bb_state { NOT_IN_BB, IN_ONE_BB, IN_MULTIPLE_BB };
       int max_uid = get_max_uid ();
-      int *start = alloca (max_uid * sizeof (int));
-      int *end = alloca (max_uid * sizeof (int));
+      int *start = (int *) alloca (max_uid * sizeof (int));
+      int *end = (int *) alloca (max_uid * sizeof (int));
       char *in_bb_p = alloca (max_uid * sizeof (enum bb_state));
 
       for (i = 0; i < max_uid; i++)
This page took 0.077016 seconds and 5 git commands to generate.