This is the mail archive of the
gcc-bugs@gcc.gnu.org
mailing list for the GCC project.
[Bug middle-end/24295] [4.1 Regression] Xorg broken, #pragma weak foo = bar no longer causes bar to be referenced
- From: "rguenth at gcc dot gnu dot org" <gcc-bugzilla at gcc dot gnu dot org>
- To: gcc-bugs at gcc dot gnu dot org
- Date: 19 Oct 2005 09:31:41 -0000
- Subject: [Bug middle-end/24295] [4.1 Regression] Xorg broken, #pragma weak foo = bar no longer causes bar to be referenced
- References: <bug-24295-10053@http.gcc.gnu.org/bugzilla/>
- Reply-to: gcc-bugzilla at gcc dot gnu dot org
------- Comment #18 from rguenth at gcc dot gnu dot org 2005-10-19 09:31 -------
+ decl = identifier_global_value (value);
Make that
+ decl = decl ? identifier_global_value (value) : NULL_TREE;
and it even survives bootstrap.
--
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=24295