diff options
-rw-r--r-- | gcc/ChangeLog | 6 | ||||
-rw-r--r-- | gcc/dwarf2out.c | 2 |
2 files changed, 7 insertions, 1 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 5e8721d..03c0db1 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,9 @@ +2010-07-28 Jakub Jelinek <jakub@redhat.com> + + PR debug/45103 + * dwarf2out.c (dwarf2out_var_location): Always consider + NOTE_DURING_CALL_P notes, even when not followed by real instructions. + 2010-07-28 Maxim Kuvyrkov <maxim@codesourcery.com> PR rtl-optimization/45107 diff --git a/gcc/dwarf2out.c b/gcc/dwarf2out.c index d6751ac..f9fc997 100644 --- a/gcc/dwarf2out.c +++ b/gcc/dwarf2out.c @@ -21278,7 +21278,7 @@ dwarf2out_var_location (rtx loc_note) next_real = next_real_insn (loc_note); /* If there are no instructions which would be affected by this note, don't do anything. */ - if (next_real == NULL_RTX) + if (next_real == NULL_RTX && !NOTE_DURING_CALL_P (loc_note)) return; /* If there were any real insns between note we processed last time |