]> git.ipfire.org Git - thirdparty/gcc.git/commitdiff
Fix paths in my previous cp/ChangeLog entries (r206368-r206371) and fix layout in...
authorAdam Butcher <abutcher@gcc.gnu.org>
Tue, 7 Jan 2014 20:36:16 +0000 (20:36 +0000)
committerAdam Butcher <abutcher@gcc.gnu.org>
Tue, 7 Jan 2014 20:36:16 +0000 (20:36 +0000)
From-SVN: r206403

12 files changed:
gcc/testsuite/g++.dg/cpp1y/pr58500.C
gcc/testsuite/g++.dg/cpp1y/pr58534.C
gcc/testsuite/g++.dg/cpp1y/pr58536.C
gcc/testsuite/g++.dg/cpp1y/pr58548.C
gcc/testsuite/g++.dg/cpp1y/pr58549.C
gcc/testsuite/g++.dg/cpp1y/pr58637.C
gcc/testsuite/g++.dg/cpp1y/pr59112.C
gcc/testsuite/g++.dg/cpp1y/pr59113.C
gcc/testsuite/g++.dg/cpp1y/pr59629.C
gcc/testsuite/g++.dg/cpp1y/pr59635.C
gcc/testsuite/g++.dg/cpp1y/pr59636.C
gcc/testsuite/g++.dg/cpp1y/pr59638.C

index b9d4a26d41596223a0479fc9b83192b3734f7e44..7adb1b8ae4c725fdeb691527f67e45493185b242 100644 (file)
@@ -1,8 +1,7 @@
+// PR c++/58500
 // { dg-do compile }
 // { dg-options "-std=gnu++1y" }
 
-// PR c++/58500
-
 struct A {};
 
 void foo(auto (A::*)());
index 4aa4f4301898dc05f548cfb694917156b0af45d8..3319f69695682d3049c4b96079b688b8143faedb 100644 (file)
@@ -1,9 +1,7 @@
+// PR c++/58534
 // { dg-do compile }
 // { dg-options "-std=gnu++1y" }
 
-// PR c++/58534
-
 template<typename> void foo(const auto&) {}
 
 template<typename, typename...T> void foo(const auto&, T...) {}
-
index 8050c1957c83499304640e900c0936211261df6e..be0043823a0f754d0a33755eae98f924dea59c82 100644 (file)
@@ -1,12 +1,10 @@
+// PR c++/58536
 // { dg-do compile }
 // { dg-options "-std=gnu++1y" }
 
-// PR c++/58536
-
 struct A
 {
   A(auto);
 };
 
 A::A(auto) {}
-
index 0ac2e1c341d0edbb2025466af8bad2f00d4c0433..ad6f726a33cc8fc37a08b38ff4ab90bcc7e5c57b 100644 (file)
@@ -1,10 +1,8 @@
+// PR c++/58548
 // { dg-do compile }
 // { dg-options "-std=gnu++1y" }
 
-// PR c++/58548
-
 void foo(auto)
 {
   struct A { int i; };
 }
-
index b71bac9975af30f07acd2e826d18dc69f3ff57fb..b9825b51abc81dc02bf5182cf0e104a05a7658e3 100644 (file)
@@ -1,10 +1,8 @@
+// PR c++/58549
 // { dg-do compile }
 // { dg-options "-std=gnu++1y" }
 
-// PR c++/58549
-
 void foo(auto)
 {
   void bar();
 }
-
index 46200ff1c5dd0f7110490b5a4b0032a609ff4e87..29297bb93dbfaf74f7c9f501b00df856c4ecc587 100644 (file)
@@ -1,7 +1,5 @@
+// PR c++/58637
 // { dg-do compile }
 // { dg-options "-std=gnu++1y" }
 
-// PR c++/58637
-
 template<> void foo(auto); // { dg-error "auto|not a template" }
-
index e7326ac311303cdf547a265cbb58056eb00ef0f2..12fef4b9fac7a0b3fc3fba77d05b641df65f7fcd 100644 (file)
@@ -1,8 +1,7 @@
+// PR c++/59112
 // { dg-do compile }
 // { dg-options "-std=gnu++1y" }
 
-// PR c++/59112
-
 void foo()
 {
   struct A
index f909a76bd3581d91dc5fbf11e4fc45e87ac48297..19bab2cedcc9c7979054769400d36890a3026d57 100644 (file)
@@ -1,8 +1,7 @@
+// PR c++/59113
 // { dg-do compile }
 // { dg-options "-std=gnu++1y" }
 
-// PR c++/59113
-
 void foo()
 {
   void bar(auto) {} // { dg-error "function-definition|auto|not permitted" }
index a0c9209791eeb035ee96beee09d6c3033b685749..c0e01c1c75de47806e800d3256cad437f3057748 100644 (file)
@@ -1,7 +1,5 @@
+// PR c++/59629
 // { dg-do compile }
 // { dg-options "-std=c++1y" }
 
-// PR c++/59629
-
 void foo(int i = []{ auto 0; }()); // { dg-error "expected|could not convert" }
-
index 0f06cc8f5ecc985c8ac07b8d14c2542f8352f7c1..16a3481b99dc9842a3d4b618a2ab6eaa62e36cbc 100644 (file)
@@ -1,9 +1,7 @@
+// PR c++/59635
 // { dg-do compile }
 // { dg-options "-std=c++1y" }
 
-// PR c++/59635
-
 auto f = [] (auto, ...) { return 0; };
 
 int (*p) (int, ...) = f;  // { dg-message "unimplemented" }
-
index f2ca5b6c09ccf3b67c48708f6fbb65cf4e610909..bb7d9b546d44e8f3d0c9b63faa55f4a8960cac5e 100644 (file)
@@ -1,7 +1,5 @@
+// PR c++/59636
 // { dg-do compile }
 // { dg-options "-std=c++1y" }
 
-// PR c++/59636
-
 auto f = []() { return []<>() {}; };  // { dg-error "expected identifier" }
-
index cd9dcdfa75a1f430eed8805702d2ff95966c2077..22af1398a13bf58b483089e2c1c598382a0c92b6 100644 (file)
@@ -1,9 +1,7 @@
+// PR c++/59638
 // { dg-do compile }
 // { dg-options "-std=gnu++1y" }
 
-// PR c++/59638
-
-
 void (*a)(auto);         // { dg-error "template declaration" }
 
 void (*b)(auto) = 0;     // { dg-error "template declaration" }