diff options
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/ChangeLog | 5 | ||||
-rw-r--r-- | gcc/config/m32r/m32r.h | 1 |
2 files changed, 6 insertions, 0 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 59a3794..7e871a6 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +2004-10-28 Nick Clifton <nickc@redhat.com> + + * config/m32r/m32r.h (DBX_OUTPUT_SOURCE_LINE): Define + begin_label. + 2004-10-27 Richard Henderson <rth@redhat.com> PR middle-end/18163 diff --git a/gcc/config/m32r/m32r.h b/gcc/config/m32r/m32r.h index beaa39f..3cb53e0 100644 --- a/gcc/config/m32r/m32r.h +++ b/gcc/config/m32r/m32r.h @@ -1524,6 +1524,7 @@ L2: .word STATIC #define DBX_OUTPUT_SOURCE_LINE(file, line, counter) \ do \ { \ + rtx begin_label = XEXP (DECL_RTL (current_function_decl), 0); \ char label[64]; \ ASM_GENERATE_INTERNAL_LABEL (label, "LM", counter); \ \ |