Commit adfc539e by Philippe De Muyter Committed by Jeff Law

flow.c (print_rtl_with_bb): Cast alloca return values for variables start and end.

        * flow.c (print_rtl_with_bb): Cast alloca return values for variables
        start and end.

From-SVN: r15753
parent 771c2d1b
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.
......
......@@ -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++)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment