summaryrefslogtreecommitdiff
path: root/gcc/flow.c
diff options
context:
space:
mode:
authorlaw <law@138bc75d-0d04-0410-961f-82ee72b054a4>1998-06-29 21:40:49 +0000
committerlaw <law@138bc75d-0d04-0410-961f-82ee72b054a4>1998-06-29 21:40:49 +0000
commit9e042f31282adcb5f843b644184aac6ff8854d3f (patch)
tree1ec056a51ca5f7af70d48889aab8bbf9c1f9d9aa /gcc/flow.c
parentad8517524f837261bb29c3a684354173d4c2c47f (diff)
downloadgcc-9e042f31282adcb5f843b644184aac6ff8854d3f.tar.gz
* Merge from gcc2 June 9, 1998 snapshot. See ChangeLog.13 for
details. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@20808 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/flow.c')
-rw-r--r--gcc/flow.c7
1 files changed, 5 insertions, 2 deletions
diff --git a/gcc/flow.c b/gcc/flow.c
index f78e171e0e5..eb6c2a0079a 100644
--- a/gcc/flow.c
+++ b/gcc/flow.c
@@ -2381,7 +2381,7 @@ find_auto_inc (needed, x, insn)
{
/* We have *p followed sometime later by q = p+size.
Both p and q must be live afterward,
- and q is not used between INSN and it's assignment.
+ and q is not used between INSN and its assignment.
Change it to q = p, ...*q..., q = q+size.
Then fall into the usual case. */
rtx insns, temp;
@@ -3132,6 +3132,7 @@ print_rtl_with_bb (outf, rtx_first)
FILE *outf;
rtx rtx_first;
{
+ extern int flag_dump_unnumbered;
register rtx tmp_rtx;
if (rtx_first == 0)
@@ -3196,7 +3197,9 @@ print_rtl_with_bb (outf, rtx_first)
if ((bb = end[INSN_UID (tmp_rtx)]) >= 0)
fprintf (outf, ";; End of basic block %d\n", bb);
- putc ('\n', outf);
+ if (! flag_dump_unnumbered
+ || GET_CODE (tmp_rtx) != NOTE || NOTE_LINE_NUMBER (tmp_rtx) < 0)
+ putc ('\n', outf);
}
}
}