diff options
author | Jeff Law <law@gcc.gnu.org> | 2000-01-04 23:55:02 -0700 |
---|---|---|
committer | Jeff Law <law@gcc.gnu.org> | 2000-01-04 23:55:02 -0700 |
commit | dd1bd863187095f63709320f6a30d97fe0ee40ab (patch) | |
tree | 3b3c08aae28d90b998b0682832af59be16e48f95 /gcc/loop.c | |
parent | e9b8009ef8d9615d74d1587b9bb06766a42b6aa3 (diff) | |
download | gcc-dd1bd863187095f63709320f6a30d97fe0ee40ab.tar.gz |
cse.c (cse_insn): Missing cast added.
* cse.c (cse_insn): Missing cast added.
* loop.c (loop_reg_used_before_p): Ditto.
* gcse.c (Pre_gcse, hoist_code): Ditto.
* varasm.c (decode_rtx_const): Ditto.
* except.c (push_ehqueue): Ditto.
* cccp.c (index0): Ditto.
* toplev.c (main): Useless `&' removed before function name.
From-SVN: r31229
Diffstat (limited to 'gcc/loop.c')
-rw-r--r-- | gcc/loop.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/loop.c b/gcc/loop.c index f25b00abbc8..8d4917ea18e 100644 --- a/gcc/loop.c +++ b/gcc/loop.c @@ -4198,7 +4198,7 @@ strength_reduce (scan_start, end, loop_top, insn_count, fprintf (loop_dump_stream, "is giv of biv %d\n", bl2->regno); /* Let this giv be discovered by the generic code. */ REG_IV_TYPE (bl->regno) = UNKNOWN_INDUCT; - reg_biv_class[bl->regno] = NULL_PTR; + reg_biv_class[bl->regno] = (struct iv_class *) NULL_PTR; /* We can get better optimization if we can move the giv setting before the first giv use. */ if (dominator |