diff options
author | kazu <kazu@138bc75d-0d04-0410-961f-82ee72b054a4> | 2005-05-29 19:38:34 +0000 |
---|---|---|
committer | kazu <kazu@138bc75d-0d04-0410-961f-82ee72b054a4> | 2005-05-29 19:38:34 +0000 |
commit | 4133d091f4d6bec891da26550dd256036c9a53b2 (patch) | |
tree | 346c11fbeaa60e2d6a27520ff73355a3f0cdd1ce /gcc/loop-iv.c | |
parent | 2b9a6d9913ae17b4a48134a5b46490ee03c465b7 (diff) | |
download | gcc-4133d091f4d6bec891da26550dd256036c9a53b2.tar.gz |
* cgraphunit.c, ipa-inline.c, loop-iv.c, modulo-sched.c,
opts.c, postreload-gcse.c, tree-browser.def, tree-eh.c,
tree-ssa-copyrename.c, tree-vect-analyze.c: Fix typos and
follow spelling conventions in error/dump messages.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@100330 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/loop-iv.c')
-rw-r--r-- | gcc/loop-iv.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gcc/loop-iv.c b/gcc/loop-iv.c index bacf8382b7f..ba0d64c78f3 100644 --- a/gcc/loop-iv.c +++ b/gcc/loop-iv.c @@ -844,7 +844,7 @@ iv_analyze_biv (rtx def, struct rtx_iv *iv) if (dump_file) { - fprintf (dump_file, "Analysing "); + fprintf (dump_file, "Analyzing "); print_rtl (dump_file, def); fprintf (dump_file, " for bivness.\n"); } @@ -927,7 +927,7 @@ iv_analyze_op (rtx insn, rtx op, struct rtx_iv *iv) if (dump_file) { - fprintf (dump_file, "Analysing operand "); + fprintf (dump_file, "Analyzing operand "); print_rtl (dump_file, op); fprintf (dump_file, " of insn "); print_rtl_single (dump_file, insn); @@ -1012,7 +1012,7 @@ iv_analyze (rtx insn, rtx def, struct rtx_iv *iv) if (dump_file) { - fprintf (dump_file, "Analysing def of "); + fprintf (dump_file, "Analyzing def of "); print_rtl (dump_file, def); fprintf (dump_file, " in insn "); print_rtl_single (dump_file, insn); |