aboutsummaryrefslogtreecommitdiff
path: root/gcc
diff options
context:
space:
mode:
authorMartin Sebor <msebor@redhat.com>2015-11-26 18:01:02 +0000
committerMartin Sebor <msebor@gcc.gnu.org>2015-11-26 11:01:02 -0700
commit83cc5c7a2fd9ced877015d1fc5a808fffe1ac008 (patch)
tree1214c5e7fcf0d18a863d0a1087d6cc930662a043 /gcc
parent9daf14d44298a602ff7be05efe6c9a65e9c97350 (diff)
downloadgcc-83cc5c7a2fd9ced877015d1fc5a808fffe1ac008.zip
gcc-83cc5c7a2fd9ced877015d1fc5a808fffe1ac008.tar.gz
gcc-83cc5c7a2fd9ced877015d1fc5a808fffe1ac008.tar.bz2
pr67876.C: Remove duplicate content.
gcc/testsuite/ * g++.dg/pr67876.C: Remove duplicate content. From-SVN: r230980
Diffstat (limited to 'gcc')
-rw-r--r--gcc/testsuite/ChangeLog4
-rw-r--r--gcc/testsuite/g++.dg/pr67876.C16
2 files changed, 4 insertions, 16 deletions
diff --git a/gcc/testsuite/ChangeLog b/gcc/testsuite/ChangeLog
index 7eedf80..df920a0 100644
--- a/gcc/testsuite/ChangeLog
+++ b/gcc/testsuite/ChangeLog
@@ -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.
diff --git a/gcc/testsuite/g++.dg/pr67876.C b/gcc/testsuite/g++.dg/pr67876.C
index 5d62b5a..c33cb8c 100644
--- a/gcc/testsuite/g++.dg/pr67876.C
+++ b/gcc/testsuite/g++.dg/pr67876.C
@@ -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); }