aboutsummaryrefslogtreecommitdiff
path: root/gcc/dwarfout.c
diff options
context:
space:
mode:
authorRichard Kenner <kenner@gcc.gnu.org>1997-01-10 07:12:18 -0500
committerRichard Kenner <kenner@gcc.gnu.org>1997-01-10 07:12:18 -0500
commit3800b162ec0fa8ec66eaac506dc7cdc2caefe46c (patch)
tree37ce835c3667b425dc78ac2bb47477139cc56217 /gcc/dwarfout.c
parent5bc7cd8eb8adbfc17e758f2d1f11728c93bfb2ce (diff)
downloadgcc-3800b162ec0fa8ec66eaac506dc7cdc2caefe46c.zip
gcc-3800b162ec0fa8ec66eaac506dc7cdc2caefe46c.tar.gz
gcc-3800b162ec0fa8ec66eaac506dc7cdc2caefe46c.tar.bz2
(dwarfout_line): Push to LINE_SECTION after calling lookup_filename.
From-SVN: r13480
Diffstat (limited to 'gcc/dwarfout.c')
-rw-r--r--gcc/dwarfout.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/dwarfout.c b/gcc/dwarfout.c
index ffba2a3..8c5ea39 100644
--- a/gcc/dwarfout.c
+++ b/gcc/dwarfout.c
@@ -5378,13 +5378,13 @@ dwarfout_line (filename, line)
ASM_OUTPUT_LABEL (asm_out_file, label);
fputc ('\n', asm_out_file);
- ASM_OUTPUT_PUSH_SECTION (asm_out_file, LINE_SECTION);
if (use_gnu_debug_info_extensions)
this_file_entry_num = lookup_filename (filename);
else
this_file_entry_num = (unsigned) -1;
+ ASM_OUTPUT_PUSH_SECTION (asm_out_file, LINE_SECTION);
if (this_file_entry_num != prev_file_entry_num)
{
char line_entry_label[MAX_ARTIFICIAL_LABEL_BYTES];