* gcc.dg/ppc64-abi-3.c: Add xfail for error checks.

From-SVN: r94561
This commit is contained in:
Janis Johnson 2005-02-01 21:25:31 +00:00 committed by Janis Johnson
parent 8ddd633ab7
commit 1ccd2fd97b
2 changed files with 7 additions and 2 deletions

View File

@ -1,3 +1,7 @@
2005-02-01 Janis Johnson <janis187@us.ibm.com>
* gcc.dg/ppc64-abi-3.c: Add xfail for error checks.
2005-02-01 Richard Henderson <rth@redhat.com>
* gcc.c-torture/execute/ieee/copysign1.c: Special case sizeof

View File

@ -9,7 +9,7 @@ typedef int __attribute__((vector_size(8))) v2si;
v4si
f(v4si v)
{ /* { dg-error "altivec instructions are disabled" } */
{ /* { dg-error "altivec instructions are disabled" "PR18631" { xfail *-*-* } } */
return v;
}
@ -24,6 +24,7 @@ main()
{
v4si v;
v2si w;
v = f (v); /* { dg-error "altivec instructions are disabled" } */
v = f (v); /* { dg-error "altivec instructions are disabled" "PR18631" { xfail *-*-* } } */
w = g (w);
return 0;
}