diff mbox

Fix invalid attributes in libstdc++

Message ID 3A7FBC5A-AB69-4690-A451-BC7D15E12432@codesourcery.com
State New
Headers show

Commit Message

Iain Sandoe Feb. 3, 2015, 10:37 a.m. UTC
Hi Jonathan,

On 1 Feb 2015, at 15:10, Jonathan Wakely wrote:

> On 01/02/15 15:08 +0000, Jonathan Wakely wrote:
>> I failed to CC gcc-patches on this patch ...
>> 
>> On 29/01/15 13:02 +0000, Jonathan Wakely wrote:
>>> Jakub pointed out that we have some attributes that don't use the
>>> reserved namespace, e.g. __attribute__ ((always_inline)).
>>> 
>>> This is a 4.9/5 regression and the fix was pre-approved by Jakub so
>>> I've committed it to trunk.
>>> 
>>> When we're back in stage1 I'll fix the TODO comments in the new tests
>>> (see PR64857) and will also rename testsuite/17_intro/headers/c++200x
>>> to .../c++2011.
>>> 
> 
> The new test fails on darwin (PR64883) and --enable-threads=single
> targets (PR64885).
> 
> This is a workaround for 64883. Tested x86_64-linux, committed to
> trunk.
> <patch.txt>

the following additional tweaks provide further work-arounds.
... checked on darwin12 and darwin14.
I have a fixincludes patch for next stage #1.
Iain

Comments

Jack Howarth Feb. 16, 2015, 3:58 p.m. UTC | #1
On Tue, Feb 3, 2015 at 5:37 AM, Iain Sandoe <iain@codesourcery.com> wrote:
> Hi Jonathan,
>
> On 1 Feb 2015, at 15:10, Jonathan Wakely wrote:
>
>> On 01/02/15 15:08 +0000, Jonathan Wakely wrote:
>>> I failed to CC gcc-patches on this patch ...
>>>
>>> On 29/01/15 13:02 +0000, Jonathan Wakely wrote:
>>>> Jakub pointed out that we have some attributes that don't use the
>>>> reserved namespace, e.g. __attribute__ ((always_inline)).
>>>>
>>>> This is a 4.9/5 regression and the fix was pre-approved by Jakub so
>>>> I've committed it to trunk.
>>>>
>>>> When we're back in stage1 I'll fix the TODO comments in the new tests
>>>> (see PR64857) and will also rename testsuite/17_intro/headers/c++200x
>>>> to .../c++2011.
>>>>
>>
>> The new test fails on darwin (PR64883) and --enable-threads=single
>> targets (PR64885).
>>
>> This is a workaround for 64883. Tested x86_64-linux, committed to
>> trunk.
>> <patch.txt>
>
> the following additional tweaks provide further work-arounds.
> ... checked on darwin12 and darwin14.
> I have a fixincludes patch for next stage #1.
> Iain

Ping on https://gcc.gnu.org/ml/gcc-patches/2015-02/msg00122.html

>
>
>
>
>
Jonathan Wakely Feb. 16, 2015, 4:06 p.m. UTC | #2
On 03/02/15 10:37 +0000, Iain Sandoe wrote:
>Hi Jonathan,
>
>On 1 Feb 2015, at 15:10, Jonathan Wakely wrote:
>
>> On 01/02/15 15:08 +0000, Jonathan Wakely wrote:
>>> I failed to CC gcc-patches on this patch ...
>>>
>>> On 29/01/15 13:02 +0000, Jonathan Wakely wrote:
>>>> Jakub pointed out that we have some attributes that don't use the
>>>> reserved namespace, e.g. __attribute__ ((always_inline)).
>>>>
>>>> This is a 4.9/5 regression and the fix was pre-approved by Jakub so
>>>> I've committed it to trunk.
>>>>
>>>> When we're back in stage1 I'll fix the TODO comments in the new tests
>>>> (see PR64857) and will also rename testsuite/17_intro/headers/c++200x
>>>> to .../c++2011.
>>>>
>>
>> The new test fails on darwin (PR64883) and --enable-threads=single
>> targets (PR64885).
>>
>> This is a workaround for 64883. Tested x86_64-linux, committed to
>> trunk.
>> <patch.txt>
>
>the following additional tweaks provide further work-arounds.
>... checked on darwin12 and darwin14.

OK for trunk - thanks.

>I have a fixincludes patch for next stage #1.
>Iain
>

>diff --git a/libstdc++-v3/testsuite/17_intro/headers/c++1998/all_attributes.cc b/libstdc++-v3/testsuite/17_intro/headers/c++1998/all_attributes.cc
>index 76a935e..6fc362a 100644
>--- a/libstdc++-v3/testsuite/17_intro/headers/c++1998/all_attributes.cc
>+++ b/libstdc++-v3/testsuite/17_intro/headers/c++1998/all_attributes.cc
>@@ -26,11 +26,11 @@
> // darwin headers use these, see PR 64883
> # define deprecated 1
> # define noreturn 1
>+# define visibility 1
> #endif
> #define packed 1
> #define pure 1
> #define unused 1
>-#define visibility 1
>
> #include <bits/stdc++.h> // TODO: this is missing from <bits/extc++.h>
> #include <bits/extc++.h>
>diff --git a/libstdc++-v3/testsuite/17_intro/headers/c++200x/all_attributes.cc b/libstdc++-v3/testsuite/17_intro/headers/c++200x/all_attributes.cc
>index c7ec27a..0726e3f 100644
>--- a/libstdc++-v3/testsuite/17_intro/headers/c++200x/all_attributes.cc
>+++ b/libstdc++-v3/testsuite/17_intro/headers/c++200x/all_attributes.cc
>@@ -22,11 +22,14 @@
> // Don't test 'const' and 'noreturn' because they are reserved anyway.
> #define abi_tag 1
> #define always_inline 1
>-#define deprecated 1
>+#ifndef __APPLE__
>+// darwin headers use these, see PR 64883
>+# define visibility 1
>+# define deprecated 1
>+#endif
> #define packed 1
> #define pure 1
> #define unused 1
>-#define visibility 1
>
> #include <bits/stdc++.h> // TODO: this is missing from <bits/extc++.h>
> #include <codecvt>       // TODO: this is missing from <bits/stdc++.h>
>diff --git a/libstdc++-v3/testsuite/17_intro/headers/c++2014/all_attributes.cc b/libstdc++-v3/testsuite/17_intro/headers/c++2014/all_attributes.cc
>index 533a6f1..06bcb8e 100644
>--- a/libstdc++-v3/testsuite/17_intro/headers/c++2014/all_attributes.cc
>+++ b/libstdc++-v3/testsuite/17_intro/headers/c++2014/all_attributes.cc
>@@ -22,11 +22,14 @@
> // Don't test 'const' and 'noreturn' because they are reserved anyway.
> #define abi_tag 1
> #define always_inline 1
>-#define deprecated 1
>+#ifndef __APPLE__
>+// darwin headers use these, see PR 64883
>+# define deprecated 1
>+# define visibility 1
>+#endif
> #define packed 1
> #define pure 1
> #define unused 1
>-#define visibility 1
>
> #include <bits/stdc++.h> // TODO: this is missing from <bits/extc++.h>
> #include <shared_mutex>  // TODO: this is missing from <bits/stdc++.h>

>
>
Jonathan Wakely March 3, 2015, 6:29 p.m. UTC | #3
On 03/02/15 10:37 +0000, Iain Sandoe wrote:
>the following additional tweaks provide further work-arounds.
>... checked on darwin12 and darwin14.

Also checked on x86_64-linux, committed to trunk.
diff mbox

Patch

diff --git a/libstdc++-v3/testsuite/17_intro/headers/c++1998/all_attributes.cc b/libstdc++-v3/testsuite/17_intro/headers/c++1998/all_attributes.cc
index 76a935e..6fc362a 100644
--- a/libstdc++-v3/testsuite/17_intro/headers/c++1998/all_attributes.cc
+++ b/libstdc++-v3/testsuite/17_intro/headers/c++1998/all_attributes.cc
@@ -26,11 +26,11 @@ 
 // darwin headers use these, see PR 64883
 # define deprecated 1
 # define noreturn 1
+# define visibility 1
 #endif
 #define packed 1
 #define pure 1
 #define unused 1
-#define visibility 1
 
 #include <bits/stdc++.h> // TODO: this is missing from <bits/extc++.h>
 #include <bits/extc++.h>
diff --git a/libstdc++-v3/testsuite/17_intro/headers/c++200x/all_attributes.cc b/libstdc++-v3/testsuite/17_intro/headers/c++200x/all_attributes.cc
index c7ec27a..0726e3f 100644
--- a/libstdc++-v3/testsuite/17_intro/headers/c++200x/all_attributes.cc
+++ b/libstdc++-v3/testsuite/17_intro/headers/c++200x/all_attributes.cc
@@ -22,11 +22,14 @@ 
 // Don't test 'const' and 'noreturn' because they are reserved anyway.
 #define abi_tag 1
 #define always_inline 1
-#define deprecated 1
+#ifndef __APPLE__
+// darwin headers use these, see PR 64883
+# define visibility 1
+# define deprecated 1
+#endif
 #define packed 1
 #define pure 1
 #define unused 1
-#define visibility 1
 
 #include <bits/stdc++.h> // TODO: this is missing from <bits/extc++.h>
 #include <codecvt>       // TODO: this is missing from <bits/stdc++.h>
diff --git a/libstdc++-v3/testsuite/17_intro/headers/c++2014/all_attributes.cc b/libstdc++-v3/testsuite/17_intro/headers/c++2014/all_attributes.cc
index 533a6f1..06bcb8e 100644
--- a/libstdc++-v3/testsuite/17_intro/headers/c++2014/all_attributes.cc
+++ b/libstdc++-v3/testsuite/17_intro/headers/c++2014/all_attributes.cc
@@ -22,11 +22,14 @@ 
 // Don't test 'const' and 'noreturn' because they are reserved anyway.
 #define abi_tag 1
 #define always_inline 1
-#define deprecated 1
+#ifndef __APPLE__
+// darwin headers use these, see PR 64883
+# define deprecated 1
+# define visibility 1
+#endif
 #define packed 1
 #define pure 1
 #define unused 1
-#define visibility 1
 
 #include <bits/stdc++.h> // TODO: this is missing from <bits/extc++.h>
 #include <shared_mutex>  // TODO: this is missing from <bits/stdc++.h>