error46.C: Add missing comment to dg-message.

* g++.dg/template/error46.C: Add missing comment to dg-message.
	* g++.dg/template/crash107.C: Likewise.
	* g++.dg/template/error47.C: Likewise.
	* g++.dg/template/crash108.C: Likewise.
	* g++.dg/overload/operator5.C: Likewise.

From-SVN: r189062
This commit is contained in:
Janis Johnson 2012-06-29 03:56:08 +00:00 committed by Janis Johnson
parent b03aa1faa2
commit c1827cf043
6 changed files with 12 additions and 6 deletions

View File

@ -1,5 +1,11 @@
2012-06-28 Janis Johnson <janisjo@codesourcery.com>
* g++.dg/template/error46.C: Add missing comment to dg-message.
* g++.dg/template/crash107.C: Likewise.
* g++.dg/template/error47.C: Likewise.
* g++.dg/template/crash108.C: Likewise.
* g++.dg/overload/operator5.C: Likewise.
* gcc.dg/Wstrict-aliasing-converted-assigned.c: Fix syntax
errors in dg-message directives, add comments.

View File

@ -13,4 +13,4 @@ inline bool equalPossiblyIgnoringCase(const String& a,
const String& b,
bool ignoreCase) {
return ignoreCase ? equalIgnoringCase(a, b) : (a == b); } // { dg-error "ambiguous" }
// { dg-message "note" { target *-*-* } 15 }
// { dg-message "note" "note" { target *-*-* } 15 }

View File

@ -14,7 +14,7 @@ template<typename FP_> struct Vec { // { dg-message "note" }
}
};
Vec<double> v(3,4,12); // { dg-error "no matching" }
// { dg-message "note" { target *-*-* } 16 }
// { dg-message "note" "note" { target *-*-* } 16 }
Vec<double> V(12,4,3); // { dg-error "no matching" }
// { dg-message "note" { target *-*-* } 18 }
// { dg-message "note" "note" { target *-*-* } 18 }
Vec<double> c = v^V; // { dg-message "required" }

View File

@ -2,4 +2,4 @@
template<class T> struct A {A(int b=k(0));}; // { dg-error "arguments" }
void f(int k){A<int> a;} // // { dg-error "parameter|declared" }
// { dg-message "note" { target *-*-* } 3 }
// { dg-message "note" "note" { target *-*-* } 3 }

View File

@ -8,4 +8,4 @@ void bar()
{
foo(A<0>(), A<1>()); // { dg-error "no matching" }
}
// { dg-message "candidate|parameter 'N' ('0' and '1')" { target *-*-* } 9 }
// { dg-message "candidate|parameter 'N' ('0' and '1')" "" { target *-*-* } 9 }

View File

@ -6,4 +6,4 @@ void bar(void* p)
{
foo(0, p); // { dg-error "no matching" }
}
// { dg-message "candidate|parameter 'T' ('int' and 'void*')" { target *-*-* } 7 }
// { dg-message "candidate|parameter 'T' ('int' and 'void*')" "" { target *-*-* } 7 }