diff options
author | rth <rth@138bc75d-0d04-0410-961f-82ee72b054a4> | 2003-05-08 00:18:48 +0000 |
---|---|---|
committer | rth <rth@138bc75d-0d04-0410-961f-82ee72b054a4> | 2003-05-08 00:18:48 +0000 |
commit | 1a2a8a45af85bcfb4810c8489c5475976fb950cb (patch) | |
tree | 9c94a42e7d79167c4b3ab5a52fc3037bed133b7c /gcc/sched-ebb.c | |
parent | 9467ef1424f46c9904fa1c49ada50c2766126029 (diff) | |
download | gcc-1a2a8a45af85bcfb4810c8489c5475976fb950cb.tar.gz |
* sched-ebb.c (schedule_ebb): Supply the correct starting
block number to save_line_notes.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@66588 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/sched-ebb.c')
-rw-r--r-- | gcc/sched-ebb.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/sched-ebb.c b/gcc/sched-ebb.c index ebf09829e68..890a816663b 100644 --- a/gcc/sched-ebb.c +++ b/gcc/sched-ebb.c @@ -514,7 +514,7 @@ schedule_ebb (head, tail) if (write_symbols != NO_DEBUG) { - save_line_notes (0, head, tail); + save_line_notes (first_bb->index, head, tail); rm_line_notes (head, tail); } |