Commit 21c40584 by Jim Wilson

(dbxout_function): Test NO_DBX_FUNCTION_END at run time

instead of compile time.

From-SVN: r13998
parent 6b857f04
......@@ -2599,8 +2599,12 @@ dbxout_function (decl)
#ifdef DBX_OUTPUT_FUNCTION_END
DBX_OUTPUT_FUNCTION_END (asmfile, decl);
#endif
#if defined(ASM_OUTPUT_SECTION_NAME) && !defined(NO_DBX_FUNCTION_END)
if (use_gnu_debug_info_extensions)
#if defined(ASM_OUTPUT_SECTION_NAME)
if (use_gnu_debug_info_extensions
#if defined(NO_DBX_FUNCTION_END)
&& ! NO_DBX_FUNCTION_END
#endif
)
dbxout_function_end ();
#endif
}
......
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