aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/c-c++-common/pr72747-2.c
blob: 080d6fc42510abaa398ec2c173e1f74d23b8318f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
/* { dg-do compile } */
/* { dg-require-effective-target powerpc_altivec_ok } */
/* { dg-options "-c -maltivec -fdump-tree-gimple" } */

/* PR 72747: test that cascaded definition is happening for non constants. */

void foo ()
{
  extern int i;
  __vector int v,w;
    v = w = (vector int) { i };
}

int main (int argc, char *argv[])
{
  return 0;
}
/* { dg-final { scan-tree-dump-times " w = {i.0_1}" 1 "gimple" } } */