re PR target/51934 (FAIL: g++.dg/torture/pr51344.C -O0 (test for excess errors) due to "cdecl attribute ignored" warning)

PR target/51934
	* g++.dg/torture/pr51344.C: Use noreturn instead of cdecl.

From-SVN: r183434
This commit is contained in:
Jason Merrill 2012-01-23 09:43:25 -05:00 committed by Jason Merrill
parent f2ede0eea0
commit 9dcc9b3b01
2 changed files with 6 additions and 1 deletions

View File

@ -1,3 +1,8 @@
2012-01-23 Jason Merrill <jason@redhat.com>
PR target/51934
* g++.dg/torture/pr51344.C: Use noreturn instead of cdecl.
2012-01-23 Greta Yorsh <Greta.Yorsh@arm.com>
* c-c++-common/tm/omp.c: Require target with pthread support.

View File

@ -4,7 +4,7 @@ class A;
template <class T>
class B
{
friend __attribute__((cdecl)) A& operator >>(A& a, B& b)
friend __attribute__((noreturn)) A& operator >>(A& a, B& b)
{
return a;
}