Fix altivec-17.C to match current compiler error message

From-SVN: r178614
This commit is contained in:
Michael Meissner 2011-09-06 22:06:59 +00:00 committed by Michael Meissner
parent cd5a118264
commit a30d652725
2 changed files with 5 additions and 1 deletions

View File

@ -1,3 +1,7 @@
2011-09-06 Michael Meissner <meissner@linux.vnet.ibm.com>
* g++.dg/ext/altivec-17.C: Fix dg-error to match current compiler.
2011-09-06 Eric Botcazou <ebotcazou@adacore.com>
* gcc.c-torture/compile/20110906-1.c: New test.

View File

@ -12,5 +12,5 @@ typedef vector__ bool__ int bool_simd_type;
void Foo (bool_simd_type const &a)
{
simd_type const &v = a; // { dg-error "'const simd_type&' from expression of type 'const bool_simd_type'" }
simd_type const &v = a; // { dg-error "invalid initialization of reference of type" }
}