]> gcc.gnu.org Git - gcc.git/commitdiff
(dbxout_function): Test NO_DBX_FUNCTION_END at run time
authorJim Wilson <wilson@gcc.gnu.org>
Wed, 30 Apr 1997 23:56:40 +0000 (16:56 -0700)
committerJim Wilson <wilson@gcc.gnu.org>
Wed, 30 Apr 1997 23:56:40 +0000 (16:56 -0700)
instead of compile time.

From-SVN: r13998

gcc/dbxout.c

index 51058dbe49171a7311bedef1f65e82839368a10b..6a62635572a1d08da46bfcc83909119e3b4cbece 100644 (file)
@@ -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
 }
This page took 0.062491 seconds and 5 git commands to generate.