This is the mail archive of the cygwin-patches mailing list for the Cygwin project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

[committed] Remove stray space in asm name.


  I spotted this trivial (and, for reasons you can probably guess at,
harmless) typo shortly after committing the patch in the first place, and now
have found a spare moment to fix it.  So, committed as
not-just-obvious-but-blindingly-so:

winsup/cygwin/ChangeLog:

	* libstdcxx_wrapper.cc (operator delete):  Remove stray space in
	asm name.

  As an anti-Murphy precaution, I did make sure it all still compiled before I
checked it in.  (I'm just getting down to work on the fortran/atexit/dtors thing.)

    cheers,
      DaveK

Index: winsup/cygwin/libstdcxx_wrapper.cc
===================================================================
RCS file: /cvs/src/src/winsup/cygwin/libstdcxx_wrapper.cc,v
retrieving revision 1.1
diff -p -u -r1.1 libstdcxx_wrapper.cc
--- winsup/cygwin/libstdcxx_wrapper.cc	7 Jul 2009 20:12:44 -0000	1.1
+++ winsup/cygwin/libstdcxx_wrapper.cc	17 Jul 2009 22:51:02 -0000
@@ -28,7 +28,7 @@ extern void *operator new(std::size_t sz
 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()

Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]