On 12-05-18 17:38 , Cary Coutant wrote:
@@ -5820,6 +5825,14 @@ const struct gcc_debug_hooks dwarf2_debu
representation is done after the entire program has been compiled.
The types below are used to describe the internal representation. */
+/* Whether to generate the DWARF accelerator tables in .debug_pubnames
+ and .debug_pubtypes. This is configured per-target, but can be
+ overridden by the -gpubnames or -gno-pubnames options. */
+
+#define want_pubnames (debug_generate_pub_sections != -1 \
+ ? debug_generate_pub_sections \
+ : targetm.want_debug_pub_sections)
+
Minor nit. Make it a static inline function?
OK otherwise.
Diego.