From: Martin Sebor Date: Thu, 26 Nov 2015 18:01:02 +0000 (+0000) Subject: pr67876.C: Remove duplicate content. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=83cc5c7a2fd9ced877015d1fc5a808fffe1ac008;p=gcc.git pr67876.C: Remove duplicate content. gcc/testsuite/ * g++.dg/pr67876.C: Remove duplicate content. From-SVN: r230980 --- diff --git a/gcc/testsuite/ChangeLog b/gcc/testsuite/ChangeLog index 7eedf80f38f..df920a0fa48 100644 --- a/gcc/testsuite/ChangeLog +++ b/gcc/testsuite/ChangeLog @@ -1,3 +1,7 @@ +2015-11-26 Martin Sebor + + * g++.dg/pr67876.C: Remove duplicate content. + 2015-11-26 Andreas Arnez * g++.dg/guality/pr67192.C: New test. diff --git a/gcc/testsuite/g++.dg/pr67876.C b/gcc/testsuite/g++.dg/pr67876.C index 5d62b5ae742..c33cb8ce010 100644 --- a/gcc/testsuite/g++.dg/pr67876.C +++ b/gcc/testsuite/g++.dg/pr67876.C @@ -14,19 +14,3 @@ void bar (S&s) { } S s; void foobar (S &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 -struct S { }; - -extern void foo (int*); - -template -void bar (S&s) { } - -S s; - -void foobar (S &s) { bar (s); }