Commit 2f7bb89d by Mike Stump Committed by Mike Stump

darwin.h (ASM_OUTPUT_LABELREF): Handle quoted non-lazy pointers for Objective-C++.

        * darwin.h (ASM_OUTPUT_LABELREF): Handle quoted non-lazy pointers
        for Objective-C++.

From-SVN: r100233
parent 6fd1ae68
2005-05-26 Mike Stump <mrs@apple.com>
* darwin.h (ASM_OUTPUT_LABELREF): Handle quoted non-lazy pointers
for Objective-C++.
2005-05-26 Richard Guenther <rguenth@gcc.gnu.org>
* tree-ssa-forwprop.c (forward_propagate_addr_expr):
......
......@@ -533,6 +533,8 @@ Boston, MA 02111-1307, USA. */
machopic_validate_stub_or_non_lazy_ptr (xname); \
else if (len > 14 && !strcmp ("$non_lazy_ptr", xname + len - 13)) \
machopic_validate_stub_or_non_lazy_ptr (xname); \
else if (len > 15 && !strcmp ("$non_lazy_ptr\"", xname + len - 14)) \
machopic_validate_stub_or_non_lazy_ptr (xname); \
if (xname[1] != '"' && name_needs_quotes (&xname[1])) \
fprintf (FILE, "\"%s\"", &xname[1]); \
else \
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment