diff options
author | Richard Henderson <rth@gcc.gnu.org> | 2001-03-15 17:25:35 -0800 |
---|---|---|
committer | Richard Henderson <rth@gcc.gnu.org> | 2001-03-15 17:25:35 -0800 |
commit | b923ac06c35fa56fe192730f332fed44c48ab1f9 (patch) | |
tree | d6ed94963bdedf71dc829a540a646a5f46fdc5bf /gcc | |
parent | 8e7fa2c825bfd57d12dcd52dbc2361d3f777ec2f (diff) | |
download | gcc-b923ac06c35fa56fe192730f332fed44c48ab1f9.zip gcc-b923ac06c35fa56fe192730f332fed44c48ab1f9.tar.gz gcc-b923ac06c35fa56fe192730f332fed44c48ab1f9.tar.bz2 |
Fix patch merge error.
From-SVN: r40525
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/dwarf2out.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/dwarf2out.c b/gcc/dwarf2out.c index e497893..6f0ae8a 100644 --- a/gcc/dwarf2out.c +++ b/gcc/dwarf2out.c @@ -6451,7 +6451,7 @@ output_line_info () current_file = line_info->dw_file_num; dw2_asm_output_data (1, DW_LNS_set_file, "DW_LNS_set_file"); dw2_asm_output_data_uleb128 (current_file, "(\"%s\")", - file_table.table[current_file]); + line_file_table.table[current_file]); } /* Emit debug info for the current line number, choosing the encoding @@ -6562,7 +6562,7 @@ output_line_info () current_file = line_info->dw_file_num; dw2_asm_output_data (1, DW_LNS_set_file, "DW_LNS_set_file"); dw2_asm_output_data_uleb128 (current_file, "(\"%s\")", - file_table.table[current_file]); + line_file_table.table[current_file]); } /* Emit debug info for the current line number, choosing the encoding |