From c627d4ddd08eacaee0388b6cae4964eda6ffbfd6 Mon Sep 17 00:00:00 2001 From: Dave Korn Date: Fri, 17 Jul 2009 23:37:05 +0000 Subject: [PATCH] * libstdcxx_wrapper.cc (operator delete): Remove stray space in asm name. --- winsup/cygwin/ChangeLog | 5 +++++ winsup/cygwin/libstdcxx_wrapper.cc | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/winsup/cygwin/ChangeLog b/winsup/cygwin/ChangeLog index 71b4a4aa8..efa6a08d3 100644 --- a/winsup/cygwin/ChangeLog +++ b/winsup/cygwin/ChangeLog @@ -1,3 +1,8 @@ +2009-07-18 Dave Korn + + * libstdcxx_wrapper.cc (operator delete): Remove stray space in + asm name. + 2009-07-17 Christopher Faylor * cygtls.cc (_cygtls::init_exception_handler): Test for e, not e->prev diff --git a/winsup/cygwin/libstdcxx_wrapper.cc b/winsup/cygwin/libstdcxx_wrapper.cc index a0d2f25ee..42d4c5bca 100755 --- a/winsup/cygwin/libstdcxx_wrapper.cc +++ b/winsup/cygwin/libstdcxx_wrapper.cc @@ -28,7 +28,7 @@ extern void *operator new(std::size_t sz) throw (std::bad_alloc) extern void *operator new[](std::size_t sz) throw (std::bad_alloc) __asm__ ("___wrap__Znaj"); extern void operator delete(void *p) throw() - __asm__ ("___wrap__ZdlPv "); + __asm__ ("___wrap__ZdlPv"); extern void operator delete[](void *p) throw() __asm__ ("___wrap__ZdaPv"); extern void *operator new(std::size_t sz, const std::nothrow_t &nt) throw()