Commit 6697c6bf by Doug Evans

(dbxout_source_file): Clean up null tree pointer test. Update copyright.

From-SVN: r8867
parent 2ec6afdd
/* Output dbx-format symbol table information from GNU compiler. /* Output dbx-format symbol table information from GNU compiler.
Copyright (C) 1987, 1988, 1992, 1993, 1994 Free Software Foundation, Inc. Copyright (C) 1987, 88, 92, 93, 94, 1995 Free Software Foundation, Inc.
This file is part of GNU CC. This file is part of GNU CC.
...@@ -518,7 +518,7 @@ dbxout_source_file (file, filename) ...@@ -518,7 +518,7 @@ dbxout_source_file (file, filename)
fprintf (file, "%s ", ASM_STABS_OP); fprintf (file, "%s ", ASM_STABS_OP);
output_quoted_string (file, filename); output_quoted_string (file, filename);
fprintf (file, ",%d,0,0,%s\n", N_SOL, &ltext_label_name[1]); fprintf (file, ",%d,0,0,%s\n", N_SOL, &ltext_label_name[1]);
if (current_function_decl if (current_function_decl != NULL_TREE
&& DECL_SECTION_NAME (current_function_decl) != NULL_TREE) && DECL_SECTION_NAME (current_function_decl) != NULL_TREE)
; /* Don't change section amid function. */ ; /* Don't change section amid function. */
else else
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment