From: Mike Stump Date: Thu, 26 May 2005 23:19:29 +0000 (+0000) Subject: darwin.h (ASM_OUTPUT_LABELREF): Handle quoted non-lazy pointers for Objective-C++. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=2f7bb89dee4d65aebe0fb0300f1220a24849b45b;p=gcc.git 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 --- diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 1657e7dd27a..2c0a64793b8 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +2005-05-26 Mike Stump + + * darwin.h (ASM_OUTPUT_LABELREF): Handle quoted non-lazy pointers + for Objective-C++. + 2005-05-26 Richard Guenther * tree-ssa-forwprop.c (forward_propagate_addr_expr): diff --git a/gcc/config/darwin.h b/gcc/config/darwin.h index c2a53d0b45e..96a501a1e79 100644 --- a/gcc/config/darwin.h +++ b/gcc/config/darwin.h @@ -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 \