diff options
author | Philippe De Muyter <phdm@info.ucl.ac.be> | 1997-09-28 09:52:39 +0200 |
---|---|---|
committer | Jeff Law <law@gcc.gnu.org> | 1997-09-28 01:52:39 -0600 |
commit | adfc539e947136235c8706764ca5b21a533a59bb (patch) | |
tree | c449fb94fb8a687555ec80f9cfac6c4efe8f1181 /gcc/flow.c | |
parent | 771c2d1bb7fbded7459e00591f15149b03b73111 (diff) | |
download | gcc-adfc539e947136235c8706764ca5b21a533a59bb.zip gcc-adfc539e947136235c8706764ca5b21a533a59bb.tar.gz gcc-adfc539e947136235c8706764ca5b21a533a59bb.tar.bz2 |
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
Diffstat (limited to 'gcc/flow.c')
-rw-r--r-- | gcc/flow.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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++) |