This is the mail archive of the gcc-patches@gcc.gnu.org mailing list for the GCC project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

Re: [Patch] [c++/debug info]


Thank you and sorry.

David Edelsohn wrote:
Catherine,

This patch broke AIX bootstrap because the dbxout.c change only
updated the dbx_debug_hooks structure and not the succeeding
xcoff_debug_hooks structure.  Zero does not make a good function
pointer.

Fixed thusly,

* dbxout.c (xcoff_debug_hooks): Add set_name_debug_nothing.

Index: dbxout.c
===================================================================
--- dbxout.c    (revision 146221)
+++ dbxout.c    (working copy)
@@ -409,6 +409,7 @@
   dbxout_handle_pch,                    /* handle_pch */
   debug_nothing_rtx,                    /* var_location */
   debug_nothing_void,                    /* switch_text_section */
+  debug_nothing_tree_tree,              /* set_name */
   0                                      /* start_end_main_source_file */
 };
 #endif /* XCOFF_DEBUGGING_INFO  */


Committed as obvious.


David


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]