diff options
| author | rth <rth@138bc75d-0d04-0410-961f-82ee72b054a4> | 1998-10-09 16:08:51 +0000 |
|---|---|---|
| committer | rth <rth@138bc75d-0d04-0410-961f-82ee72b054a4> | 1998-10-09 16:08:51 +0000 |
| commit | 7426c2df49b661a536d80182118d25b5e701eb30 (patch) | |
| tree | e24dc2e8c37807b8a57f438eb8d0c3954a1a2ece /gcc/flow.c | |
| parent | cfc185a4caa36029674ec56b1fb00deecee1166e (diff) | |
| download | ppe42-gcc-7426c2df49b661a536d80182118d25b5e701eb30.tar.gz ppe42-gcc-7426c2df49b661a536d80182118d25b5e701eb30.zip | |
Fri Oct 9 16:03:19 1998 Graham <grahams@rcp.co.uk>
* flow.c (print_rtl_with_bb): Changed type of in_bb_p to match use.
* gcc.c (add_preprocessor_option): Correct typo when allocating
memory, sizeof() argument had one too many `*'.
(add_assembler_option): Likewise.
(add_linker_option): Likewise.
* gcov.c (output_data): Likewise.
* local-alloc.c (memref_used_between_p): Likewise.
(update_equiv_regs): Likewise.
* loop.c (strength_reduce): Likewise.
* reg-stack.c (record_asm_reg_life): Likewise.
(subst_asm_stack_reg): Likewise.
* reorg.c (dbr_schedule): Likewise.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@22964 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/flow.c')
| -rw-r--r-- | gcc/flow.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/gcc/flow.c b/gcc/flow.c index ce476e21f9e..038c5d71882 100644 --- a/gcc/flow.c +++ b/gcc/flow.c @@ -3274,7 +3274,8 @@ print_rtl_with_bb (outf, rtx_first) int max_uid = get_max_uid (); int *start = (int *) alloca (max_uid * sizeof (int)); int *end = (int *) alloca (max_uid * sizeof (int)); - char *in_bb_p = (char *) alloca (max_uid * sizeof (enum bb_state)); + enum bb_state *in_bb_p = (enum bb_state *) + alloca (max_uid * sizeof (enum bb_state)); for (i = 0; i < max_uid; i++) { |

