diff options
author | Richard Kenner <kenner@gcc.gnu.org> | 1995-01-25 14:50:09 -0500 |
---|---|---|
committer | Richard Kenner <kenner@gcc.gnu.org> | 1995-01-25 14:50:09 -0500 |
commit | 181c656813d13c67e7ec008a0461db799b758ae9 (patch) | |
tree | b0b68c99d952ec35fcc0de0ce5f0ac07da07f322 /gcc/unroll.c | |
parent | a882392b9dc336c2d813093134dbc79a40fa0b47 (diff) | |
download | gcc-181c656813d13c67e7ec008a0461db799b758ae9.zip gcc-181c656813d13c67e7ec008a0461db799b758ae9.tar.gz gcc-181c656813d13c67e7ec008a0461db799b758ae9.tar.bz2 |
(find_splittable_givs): Change error message text.
From-SVN: r8814
Diffstat (limited to 'gcc/unroll.c')
-rw-r--r-- | gcc/unroll.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/gcc/unroll.c b/gcc/unroll.c index 784e09a..bebb174 100644 --- a/gcc/unroll.c +++ b/gcc/unroll.c @@ -1,5 +1,5 @@ /* Try to unroll loops, and split induction variables. - Copyright (C) 1992, 1993, 1994 Free Software Foundation, Inc. + Copyright (C) 1992, 1993, 1994, 1995 Free Software Foundation, Inc. Contributed by James E. Wilson, Cygnus Support/UC Berkeley. This file is part of GNU CC. @@ -2592,7 +2592,7 @@ find_splittable_givs (bl, unroll_type, loop_start, loop_end, increment, { /* If value is not a constant, register, or register plus constant, then compute its value into a register before - loop start. This prevents illegal rtx sharing, and should + loop start. This prevents invalid rtx sharing, and should generate better code. We can use bl->initial_value here instead of splittable_regs[bl->regno] because this code is going before the loop start. */ @@ -2700,7 +2700,7 @@ find_splittable_givs (bl, unroll_type, loop_start, loop_end, increment, { if (loop_dump_stream) fprintf (loop_dump_stream, - "Illegal address for giv at insn %d\n", + "Invalid address for giv at insn %d\n", INSN_UID (v->insn)); continue; } @@ -2733,7 +2733,7 @@ find_splittable_givs (bl, unroll_type, loop_start, loop_end, increment, if (loop_dump_stream) fprintf (loop_dump_stream, - "Illegal init insn, rewritten.\n"); + "Invalid init insn, rewritten.\n"); } } else @@ -2741,7 +2741,7 @@ find_splittable_givs (bl, unroll_type, loop_start, loop_end, increment, v->dest_reg = value; /* Check the resulting address for validity, and fail - if the resulting address would be illegal. */ + if the resulting address would be invalid. */ if (! memory_address_p (v->mem_mode, v->dest_reg) || ! memory_address_p (v->mem_mode, plus_constant (v->dest_reg, @@ -2750,7 +2750,7 @@ find_splittable_givs (bl, unroll_type, loop_start, loop_end, increment, { if (loop_dump_stream) fprintf (loop_dump_stream, - "Illegal address for giv at insn %d\n", + "Invalid address for giv at insn %d\n", INSN_UID (v->insn)); continue; } |