diff options
Diffstat (limited to 'gcc/testsuite/gcc.dg/simd-2.c')
-rw-r--r-- | gcc/testsuite/gcc.dg/simd-2.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gcc/testsuite/gcc.dg/simd-2.c b/gcc/testsuite/gcc.dg/simd-2.c index 09e28a7798a..13e1caba6cb 100644 --- a/gcc/testsuite/gcc.dg/simd-2.c +++ b/gcc/testsuite/gcc.dg/simd-2.c @@ -23,14 +23,14 @@ hanneke () a = b; /* Assignment of different types. */ - b = c; /* { dg-error "incompatible types in assignment" } */ - d = a; /* { dg-error "incompatible types in assignment" } */ + b = c; /* { dg-error "incompatible types when assigning" } */ + d = a; /* { dg-error "incompatible types when assigning" } */ /* Casting between SIMDs of the same size. */ e = (typeof (e)) a; /* Assignment between scalar and SIMD of different size. */ - foo = a; /* { dg-error "incompatible types in assignment" } */ + foo = a; /* { dg-error "incompatible types when assigning" } */ /* Casted assignment between scalar and SIMD of same size. */ foo = (typeof (foo)) foo2; /* { dg-error "aggregate value used where a float was expected" } */ |