mirror of
git://gcc.gnu.org/git/gcc.git
synced 2025-04-05 05:10:33 +08:00
* 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:
parent
eeea13c2cd
commit
1126bfdd6b
@ -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,
|
||||
|
@ -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 } } } */
|
||||
|
@ -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 } } } */
|
||||
|
@ -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
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user