mirror of git://gcc.gnu.org/git/gcc.git
re PR libitm/52220 (FAIL: libitm.c++/eh-1.C execution test due to Xcode 4 weakref linker bug)
PR libitm/52220 * config/darwin-crt-tm.c: Correct typo. From-SVN: r184305
This commit is contained in:
parent
04c937f581
commit
672ed3139a
|
|
@ -1,3 +1,8 @@
|
||||||
|
2012-02-15 Iain Sandoe <iains@gcc.gnu.org>
|
||||||
|
|
||||||
|
PR libitm/52220
|
||||||
|
* config/darwin-crt-tm.c: Correct typo.
|
||||||
|
|
||||||
2012-02-15 Iain Sandoe <iains@gcc.gnu.org>
|
2012-02-15 Iain Sandoe <iains@gcc.gnu.org>
|
||||||
Patrick Marlier <patrick.marlier@gmail.com>
|
Patrick Marlier <patrick.marlier@gmail.com>
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -103,8 +103,6 @@ void __doTMdeRegistrations (void)
|
||||||
_ITM_deregisterTMCloneTable (tmct);
|
_ITM_deregisterTMCloneTable (tmct);
|
||||||
}
|
}
|
||||||
|
|
||||||
#endif
|
|
||||||
|
|
||||||
/* Provide dummy functions to satisfy linkage for versions of the Darwin
|
/* Provide dummy functions to satisfy linkage for versions of the Darwin
|
||||||
tool-chain that that can't handle undefined weak refs at the link stage.
|
tool-chain that that can't handle undefined weak refs at the link stage.
|
||||||
??? Define these dummy functions only when !HAVE_ELF_STYLE_WEAKREF. */
|
??? Define these dummy functions only when !HAVE_ELF_STYLE_WEAKREF. */
|
||||||
|
|
@ -147,3 +145,4 @@ void *_ZnaXRKSt9nothrow_t (size_t s UNUSED, c_nothrow_p b UNUSED)
|
||||||
{ return NULL; }
|
{ return NULL; }
|
||||||
void _ZdaPvRKSt9nothrow_t (void * a UNUSED, c_nothrow_p b UNUSED) { return; }
|
void _ZdaPvRKSt9nothrow_t (void * a UNUSED, c_nothrow_p b UNUSED) { return; }
|
||||||
|
|
||||||
|
#endif
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue