* gcc.dg/vect/vect.exp

(check_effective_target_lp64_or_vect_no_align): New.
	* gcc.dg/vect/vect-77.c: Use it.
	* gcc.dg/vect/vect-78.c: Use it.

From-SVN: r92467
This commit is contained in:
Janis Johnson 2004-12-21 18:05:36 +00:00 committed by Janis Johnson
parent eeea13c2cd
commit 1126bfdd6b
4 changed files with 20 additions and 4 deletions

View File

@ -1,5 +1,10 @@
2004-12-21 Janis Johnson <janis187@us.ibm.com>
* gcc.dg/vect/vect.exp
(check_effective_target_lp64_or_vect_no_align): New.
* gcc.dg/vect/vect-77.c: Use it.
* gcc.dg/vect/vect-78.c: Use it.
* lib/target-supports.exp
(check_effective_target_vect_no_max,
check_effective_target_vect_no_bitwise,

View File

@ -39,6 +39,4 @@ int main (void)
return 0;
}
/* These are not yet vectorized on targets that do not model alignment-handling
mechanisms. */
/* { dg-final { scan-tree-dump-times "vectorized 1 loops" 1 "vect" { xfail i?86-*-* x86_64-*-* sparc*-*-* alpha*-*-* } } } */
/* { dg-final { scan-tree-dump-times "vectorized 1 loops" 1 "vect" { xfail lp64_or_vect_no_align } } } */

View File

@ -40,4 +40,4 @@ int main (void)
return 0;
}
/* { dg-final { scan-tree-dump-times "vectorized 1 loops" 1 "vect" { xfail i?86-*-* x86_64-*-* sparc*-*-* alpha*-*-* } } } */
/* { dg-final { scan-tree-dump-times "vectorized 1 loops" 1 "vect" { xfail lp64_or_vect_no_align } } } */

View File

@ -69,6 +69,19 @@ if [istarget "powerpc*-*-*"] {
return
}
# Return 1 if the effective target is LP64 or if the effective target
# does not support a vector alignment mechanism.
proc check_effective_target_lp64_or_vect_no_align { } {
if { [is-effective-target lp64]
|| [is-effective-target vect_no_align] } {
set answer 1
} else {
set answer 0
}
return $answer
}
# Initialize `dg'.
dg-init