aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.target/sparc/fexpand-2.c
blob: 38b4e72fa09b69fb0b3facfc2a43c7d1247f3383 (plain)
1
2
3
4
5
6
7
8
9
10
11
/* { dg-do compile } */
/* { dg-options "-O1 -fdump-tree-final_cleanup -mcpu=ultrasparc -mvis" } */
typedef short vec16 __attribute__((vector_size(8)));
typedef unsigned char vec8 __attribute__((vector_size(4)));

vec16 foo () {
  vec8 a = {(unsigned char)1,(unsigned char)2,(unsigned char)4,(unsigned char)8};
  return __builtin_vis_fexpand (a);
}

/* { dg-final { scan-tree-dump "{ 16, 32, 64, 128 }" "final_cleanup" } } */