diff options
author | iains <iains@138bc75d-0d04-0410-961f-82ee72b054a4> | 2012-02-16 09:46:31 +0000 |
---|---|---|
committer | iains <iains@138bc75d-0d04-0410-961f-82ee72b054a4> | 2012-02-16 09:46:31 +0000 |
commit | d114e642dbedf2d6713dee17f49eafe38cace351 (patch) | |
tree | 8167db82f66a931b37c4254be1523a612c6424c0 /libgcc | |
parent | 830de8802605291b6efb98b1a8fa3f8cd17b979f (diff) | |
download | gcc-d114e642dbedf2d6713dee17f49eafe38cace351.tar.gz |
PR libitm/52220
* config/darwin-crt-tm.c: Correct typo.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@184305 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'libgcc')
-rw-r--r-- | libgcc/ChangeLog | 5 | ||||
-rw-r--r-- | libgcc/config/darwin-crt-tm.c | 3 |
2 files changed, 6 insertions, 2 deletions
diff --git a/libgcc/ChangeLog b/libgcc/ChangeLog index fef5b6d53cb..01a3ac230a6 100644 --- a/libgcc/ChangeLog +++ b/libgcc/ChangeLog @@ -1,4 +1,9 @@ 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> Patrick Marlier <patrick.marlier@gmail.com> PR libitm/52220 diff --git a/libgcc/config/darwin-crt-tm.c b/libgcc/config/darwin-crt-tm.c index 319b4f89389..e9058895a74 100644 --- a/libgcc/config/darwin-crt-tm.c +++ b/libgcc/config/darwin-crt-tm.c @@ -103,8 +103,6 @@ void __doTMdeRegistrations (void) _ITM_deregisterTMCloneTable (tmct); } -#endif - /* 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. ??? 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; } void _ZdaPvRKSt9nothrow_t (void * a UNUSED, c_nothrow_p b UNUSED) { return; } +#endif |