]> git.ipfire.org Git - thirdparty/gcc.git/commitdiff
PR c++/89325
authorjakub <jakub@138bc75d-0d04-0410-961f-82ee72b054a4>
Wed, 17 Apr 2019 19:24:55 +0000 (19:24 +0000)
committerjakub <jakub@138bc75d-0d04-0410-961f-82ee72b054a4>
Wed, 17 Apr 2019 19:24:55 +0000 (19:24 +0000)
* g++.dg/ext/attrib58.C: New test.
* g++.dg/ext/attrib59.C: New test.
* g++.dg/ext/attrib60.C: New test.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@270422 138bc75d-0d04-0410-961f-82ee72b054a4

gcc/testsuite/ChangeLog
gcc/testsuite/g++.dg/ext/attrib58.C [new file with mode: 0644]
gcc/testsuite/g++.dg/ext/attrib59.C [new file with mode: 0644]
gcc/testsuite/g++.dg/ext/attrib60.C [new file with mode: 0644]

index 963245e96adaa6498570b47653da807f3abb8a24..11580f2d006eaf6d2ae4dd177ca1631bbf72f8b9 100644 (file)
@@ -1,5 +1,10 @@
 2019-04-17  Jakub Jelinek  <jakub@redhat.com>
 
+       PR c++/89325
+       * g++.dg/ext/attrib58.C: New test.
+       * g++.dg/ext/attrib59.C: New test.
+       * g++.dg/ext/attrib60.C: New test.
+
        PR target/90125
        * gcc.target/i386/avx512f-vfmsubXXXss-2.c (avx512f_test): Adjust
        constants to ensure precise result even when not using fma.
diff --git a/gcc/testsuite/g++.dg/ext/attrib58.C b/gcc/testsuite/g++.dg/ext/attrib58.C
new file mode 100644 (file)
index 0000000..01c0035
--- /dev/null
@@ -0,0 +1,8 @@
+// PR c++/89325
+// { dg-do compile }
+// { dg-options "-Wattributes" }
+
+struct A { friend int &operator<< (int &i, const A &) { return i; } }; // { dg-bogus "previous definition" }
+#pragma GCC optimize ("-fno-ipa-cp-clone")
+struct B {};
+int &operator<<(int &, const B &);     // { dg-bogus "optimization attribute on '\[^\n\r]*' follows definition but the attribute doesn.t match" }
diff --git a/gcc/testsuite/g++.dg/ext/attrib59.C b/gcc/testsuite/g++.dg/ext/attrib59.C
new file mode 100644 (file)
index 0000000..b883d26
--- /dev/null
@@ -0,0 +1,11 @@
+// PR c++/89325
+// { dg-do compile }
+// { dg-options "-Wattributes" }
+
+int foo (int) { return 0; }    // { dg-bogus "previous definition" }
+int bar (int) { return 0; }    // { dg-bogus "previous definition" }
+int baz (int) { return 0; }    // { dg-message "previous definition" }
+__attribute__((optimize (0))) int bar (long); // { dg-bogus "optimization attribute on '\[^\n\r]*' follows definition but the attribute doesn.t match" }
+#pragma GCC optimize ("-fno-ipa-cp-clone")
+int foo (long);                        // { dg-bogus "optimization attribute on '\[^\n\r]*' follows definition but the attribute doesn.t match" }
+int baz (int);                 // { dg-warning "optimization attribute on '\[^\n\r]*' follows definition but the attribute doesn.t match" }
diff --git a/gcc/testsuite/g++.dg/ext/attrib60.C b/gcc/testsuite/g++.dg/ext/attrib60.C
new file mode 100644 (file)
index 0000000..26958cb
--- /dev/null
@@ -0,0 +1,9 @@
+// PR c++/89325
+// { dg-do compile }
+// { dg-options "-Wattributes" }
+
+__attribute__((noinline)) void foo (int) {}    // { dg-bogus "previous definition" } 
+inline void foo (long);                                // { dg-bogus "inline declaration of '\[^\n\r]*' follows declaration with attribute 'noinline'" }
+inline void foo (long) {}
+__attribute__((noinline)) void bar (int) {}    // { dg-message "previous definition" } 
+inline void bar (int);                         // { dg-warning "inline declaration of '\[^\n\r]*' follows declaration with attribute 'noinline'" }