Re: [PATCH] GCC 4.7 : PR 54861 - libstdc++ header file typo

2012-10-10 Thread Paolo Carlini
On 10/10/2012 07:16 PM, Andrew MacLeod wrote: This bootstraps and causes no new regressions on the 4.7 branch.Is it OK to check this into the 4.7 branch right now? Yes, thanks. Paolo.

[PATCH] GCC 4.7 : PR 54861 - libstdc++ header file typo

2012-10-10 Thread Andrew MacLeod
This bootstraps and causes no new regressions on the 4.7 branch.Is it OK to check this into the 4.7 branch right now? Thanks Andrew Original Message Subject:PR 54861 - libstdc++ header file typo Date: Tue, 09 Oct 2012 14:40:46 -0400 From: Andrew MacLeod

PR 54861 - libstdc++ header file typo

2012-10-09 Thread Andrew MacLeod
There is a typo in the header files for libstdc++ where the atomic_signal_fence() method is actually calling __atomic_thread_fence() instead of __atomic_signal_fence(). This results in extra barriers in the executable that don't need to be there. fixed as trivial and checked into mainline. Is