pr67876.C: Remove duplicate content.
authorMartin Sebor <msebor@redhat.com>
Thu, 26 Nov 2015 18:01:02 +0000 (18:01 +0000)
committerMartin Sebor <msebor@gcc.gnu.org>
Thu, 26 Nov 2015 18:01:02 +0000 (11:01 -0700)
gcc/testsuite/
* g++.dg/pr67876.C: Remove duplicate content.

From-SVN: r230980

gcc/testsuite/ChangeLog
gcc/testsuite/g++.dg/pr67876.C

index 7eedf80..df920a0 100644 (file)
@@ -1,3 +1,7 @@
+2015-11-26  Martin Sebor  <msebor@redhat.com>
+
+       * g++.dg/pr67876.C: Remove duplicate content.
+
 2015-11-26  Andreas Arnez  <arnez@linux.vnet.ibm.com>
 
        * g++.dg/guality/pr67192.C: New test.
index 5d62b5a..c33cb8c 100644 (file)
@@ -14,19 +14,3 @@ void bar (S<T, F>&s) { }
 S<int, foo> s;
 
 void foobar (S<int, foo> &s) { bar (s); }
-// PR c++/67876 - [6 Regression] ICE when compiling Firefox 38
-// Caused by a patch for c/66516 - missing diagnostic on taking
-// the address of a builtin function
-// { dg-do compile }
-
-template <class T, void (&F)(T*)>
-struct S { };
-
-extern void foo (int*);
-
-template <class T, void (&F)(T*)>
-void bar (S<T, F>&s) { }
-
-S<int, foo> s;
-
-void foobar (S<int, foo> &s) { bar (s); }