diff options
author | Hans-Peter Nilsson <hp@bitrange.com> | 2020-07-27 03:39:16 +0200 |
---|---|---|
committer | Hans-Peter Nilsson <hp@bitrange.com> | 2020-07-27 03:39:16 +0200 |
commit | f3772283350336ad3dc7d36ffc475931ae47ba02 (patch) | |
tree | b4d6d8cacdc96f888c7e414c9e15b603635c9b2b /gcc | |
parent | 642dc9a05825efac53f1551dc582c8c236c51f5c (diff) | |
download | gcc-f3772283350336ad3dc7d36ffc475931ae47ba02.zip gcc-f3772283350336ad3dc7d36ffc475931ae47ba02.tar.gz gcc-f3772283350336ad3dc7d36ffc475931ae47ba02.tar.bz2 |
gcc.dg/tree-ssa/vector-4.c: Adjust for mmix.
Again, the variables are "privatized" using ASM_PN_FORMAT for MMIX (but
apparently not for other targets) and the line to match looks like:
D.1427 = VEC_PERM_EXPR <a::0, b::1, { 0, 4, 1, 5 }>;
gcc/testsuite:
* gcc.dg/tree-ssa/vector-4.c: Adjust for mmix.
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/testsuite/gcc.dg/tree-ssa/vector-4.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/gcc/testsuite/gcc.dg/tree-ssa/vector-4.c b/gcc/testsuite/gcc.dg/tree-ssa/vector-4.c index 17c56e9..00ddd29 100644 --- a/gcc/testsuite/gcc.dg/tree-ssa/vector-4.c +++ b/gcc/testsuite/gcc.dg/tree-ssa/vector-4.c @@ -11,5 +11,6 @@ v4si vs (v4si a, v4si b) /* The compound literal should be placed directly in the vec_perm. */ /* Test is xfailed on 32-bit hppa*-*-* because target-callee-copies. */ -/* { dg-final { scan-tree-dump-times "VEC_PERM_EXPR <a, b, { 0, 4, 1, 5 }>;" 1 "gimple" { xfail { hppa*-*-* && { ! lp64 } } } } } */ +/* { dg-final { scan-tree-dump-times "VEC_PERM_EXPR <a, b, { 0, 4, 1, 5 }>;" 1 "gimple" { target { ! mmix-knuth-mmixware } xfail { hppa*-*-* && { ! lp64 } } } } } */ +/* { dg-final { scan-tree-dump-times "VEC_PERM_EXPR <a::., b::., { 0, 4, 1, 5 }>;" 1 "gimple" { target mmix-knuth-mmixware } } } */ |