re PR testsuite/54119 (FAIL: gcc.dg/tree-ssa/vector-4.c scan-tree-dump-times gimple...
[official-gcc.git] / gcc / testsuite / gcc.dg / tree-ssa / vector-4.c
blobc2a39ca6751179726512ad4af94ca97fd0897eea
1 /* { dg-do compile } */
2 /* { dg-options "-w -O1 -fdump-tree-gimple" } */
4 typedef int v4si __attribute__ ((vector_size (16)));
6 v4si vs (v4si a, v4si b)
8 return __builtin_shuffle (a, b, (v4si) {0, 4, 1, 5});
11 /* The compound literal should be placed directly in the vec_perm. */
12 /* { dg-final { scan-tree-dump-times "VEC_PERM_EXPR <a, b, { 0, 4, 1, 5 }>;" 1 "gimple" { xfail { hppa*-*-* && { ! lp64 } } } } } */
14 /* { dg-final { cleanup-tree-dump "gimple" } } */