summaryrefslogtreecommitdiff
path: root/gcc/unroll.c
diff options
context:
space:
mode:
authorkenner <kenner@138bc75d-0d04-0410-961f-82ee72b054a4>1995-01-25 19:50:09 +0000
committerkenner <kenner@138bc75d-0d04-0410-961f-82ee72b054a4>1995-01-25 19:50:09 +0000
commit67c92c26b04c0553f9a113393cab6255fba3ba3c (patch)
treeb0b68c99d952ec35fcc0de0ce5f0ac07da07f322 /gcc/unroll.c
parenta99897a887445b9bd11e0bf8ea292ff99ecf070e (diff)
downloadgcc-67c92c26b04c0553f9a113393cab6255fba3ba3c.tar.gz
(find_splittable_givs): Change error message text.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@8814 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/unroll.c')
-rw-r--r--gcc/unroll.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/gcc/unroll.c b/gcc/unroll.c
index 784e09a68e7..bebb17469cb 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;
}