diff options
Diffstat (limited to 'gcc')
| -rw-r--r-- | gcc/ChangeLog | 5 | ||||
| -rw-r--r-- | gcc/config/darwin.h | 2 |
2 files changed, 7 insertions, 0 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 1657e7d..2c0a647 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +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): diff --git a/gcc/config/darwin.h b/gcc/config/darwin.h index c2a53d0..96a501a 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 \ |
