Commit 49bcb416 by Bernd Schmidt Committed by Bernd Schmidt

var-tracking.c (emit_note_insn_var_location): Take care not to cause verify_flow_info failures.

	* var-tracking.c (emit_note_insn_var_location): Take care not to
	cause verify_flow_info failures.

From-SVN: r119116
parent 57250223
2006-11-23 Bernd Schmidt <bernd.schmidt@analog.com>
* var-tracking.c (emit_note_insn_var_location): Take care not to
cause verify_flow_info failures.
2006-11-22 Daniel Berlin <dberlin@dberlin.org>
* tree-ssa-structalias.c: Remove edge weights in favor of just
......
......@@ -2443,7 +2443,9 @@ emit_note_insn_var_location (void **varp, void *data)
complete = false;
if (where == EMIT_NOTE_AFTER_INSN)
note = emit_note_after (NOTE_INSN_VAR_LOCATION, insn);
/* emit_note_after can insert a note after a flow-control insn in a basic
block. That causes verify_flow_info failures. */
note = emit_note_before (NOTE_INSN_VAR_LOCATION, NEXT_INSN (insn));
else
note = emit_note_before (NOTE_INSN_VAR_LOCATION, insn);
......
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