diff options
author | rth <rth@138bc75d-0d04-0410-961f-82ee72b054a4> | 1999-10-15 18:07:48 +0000 |
---|---|---|
committer | rth <rth@138bc75d-0d04-0410-961f-82ee72b054a4> | 1999-10-15 18:07:48 +0000 |
commit | a530a9101947c6d8f276da5dcdb411c38262cde5 (patch) | |
tree | 53a35e1d7cd0e768b90efc076810b3d0586b534c /gcc/unroll.c | |
parent | 9b8b7b9f8fd93aecece60cb73cdb4dc34df032bf (diff) | |
download | gcc-a530a9101947c6d8f276da5dcdb411c38262cde5.tar.gz |
Based on patch from Michael Gschwind <mikeg@watson.ibm.com>:
* unroll.c (unroll_loop): Cast return value of alloca.
* i370/i370.c: Include function.h and toplev.h.
(i370_label_scan): Remove c++ commented abort.
* i370/i370.h (HANDLE_PRAGMA): Takes three arguments.
(ASM_OUTPUT_LABELREF): Fix TOUPPER/else broken 16 Sept.
* i370/xm-i370.h (HOST_BITS_PER_LONGLONG): Define.
* i370/xm-mvs.h, i370/xm-oe.h: Likewise.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@30021 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/unroll.c')
-rw-r--r-- | gcc/unroll.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/unroll.c b/gcc/unroll.c index dce90b23fcf..c21638f1588 100644 --- a/gcc/unroll.c +++ b/gcc/unroll.c @@ -769,7 +769,7 @@ unroll_loop (loop_end, insn_count, loop_start, end_insert_before, splittable_regs = (rtx *) alloca (maxregnum * sizeof (rtx)); bzero ((char *) splittable_regs, maxregnum * sizeof (rtx)); - derived_regs = alloca (maxregnum); + derived_regs = (char *) alloca (maxregnum); bzero (derived_regs, maxregnum); splittable_regs_updates = (int *) alloca (maxregnum * sizeof (int)); bzero ((char *) splittable_regs_updates, maxregnum * sizeof (int)); |