Commit a8b94b40 by Richard Kenner Committed by Richard Kenner

* flow.c (tidy_fallthru_edge): Never end block on line number NOTE.

From-SVN: r39739
parent d64236b4
Thu Feb 15 21:30:26 2001 Richard Kenner <kenner@vlsi1.ultra.nyu.edu>
* flow.c (tidy_fallthru_edge): Never end block on line number NOTE.
* function.c (assign_parms): Set RTX_UNCHANGING_P in pseudo when we
do in memory.
......
......@@ -2814,7 +2814,14 @@ tidy_fallthru_edge (e, b, c)
NOTE_SOURCE_FILE (q) = 0;
}
else
q = PREV_INSN (q);
{
q = PREV_INSN (q);
/* We don't want a block to end on a line-number note since that has
the potential of changing the code between -g and not -g. */
while (GET_CODE (q) == NOTE && NOTE_LINE_NUMBER (q) >= 0)
q = PREV_INSN (q);
}
b->end = q;
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment