gcc:
PR bootstrap/66448
* passes.c (rest_of_decl_compilation): Do not register globals for
early debug if they are declared in built-ins.
From-SVN: r224451
+2015-06-13 Iain Sandoe <iain@codesourcery.com>
+
+ PR bootstrap/66448
+ * passes.c (rest_of_decl_compilation): Do not register globals for
+ early debug if they are declared in built-ins.
+
2015-06-12 Aldy Hernandez <aldyh@redhat.com>
* dwarf2out.c (check_die): Protect with ENABLE_CHECKING.
*/
&& !decl_function_context (decl)
&& !current_function_decl
-
+ && DECL_SOURCE_LOCATION (decl) != BUILTINS_LOCATION
&& !decl_type_context (decl))
(*debug_hooks->early_global_decl) (decl);
}