intrinsics-1.c: Use dg-message to match flax-vector-conversions note.

2007-07-16  Andrew Pinski  <andrew_pinski@playstation.sony.com>

	* gcc.target/spu/intrinsics-1.c: Use dg-message to
	match flax-vector-conversions note.
	* gcc.target/spu/fixed-range-bad.c: Use dg-warning
	instead of dg-error for the warning.

From-SVN: r126699
This commit is contained in:
Andrew Pinski 2007-07-17 03:07:09 +00:00 committed by Andrew Pinski
parent f56c05a0d2
commit 02634bb287
3 changed files with 10 additions and 2 deletions

View File

@ -1,3 +1,10 @@
2007-07-16 Andrew Pinski <andrew_pinski@playstation.sony.com>
* gcc.target/spu/intrinsics-1.c: Use dg-message to
match flax-vector-conversions note.
* gcc.target/spu/fixed-range-bad.c: Use dg-warning
instead of dg-error for the warning.
2007-07-16 Rask Ingemann Lambertsen <rask@sygehus.dk>
* gcc.c-torture/execute/20061101-2.c: Variant of 20061101-1.c

View File

@ -1,5 +1,5 @@
/* { dg-do compile } */
/* { dg-options "-mfixed-range=1-x" } */
/* { dg-error "unknown register name" "" { target spu-*-* } 0 } */
/* { dg-warning "unknown register name" "" { target spu-*-* } 0 } */
int i;

View File

@ -13,5 +13,6 @@ void f(void)
gt = spu_cmpgt(a, a1); /* { dg-error "integer from pointer without a cast" } */
gt = spu_cmpgt(a, b); /* { dg-error "parameter list" } */
gt = spu_cmpgt(a, a);
a = spu_cmpgt(a, a); /* { dg-error "" } */
a = spu_cmpgt(a, a); /* { dg-message "note: use -flax-vector-conversions to permit conversions between vectors with differing element types or numbers of subparts" } */
/* { dg-error "incompatible types in" "" { target *-*-* } 16 } */
}