Commit d6837949 by Jim Wilson

(schedule_block): Copy RTX_INTEGRATE_P bit when create a new note.

From-SVN: r10975
parent f395cd86
...@@ -4066,6 +4066,7 @@ schedule_block (b, file) ...@@ -4066,6 +4066,7 @@ schedule_block (b, file)
notes++; notes++;
new = emit_note_after (NOTE_LINE_NUMBER (note), prev); new = emit_note_after (NOTE_LINE_NUMBER (note), prev);
NOTE_SOURCE_FILE (new) = NOTE_SOURCE_FILE (note); NOTE_SOURCE_FILE (new) = NOTE_SOURCE_FILE (note);
RTX_INTEGRATED_P (new) = RTX_INTEGRATED_P (note);
} }
} }
if (file && notes) if (file && notes)
......
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