aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.dg/analyzer/pr96713.c
blob: 12170bd4c646b82729955c443ee3d3af47c39813 (plain)
1
2
3
4
5
6
7
8
9
/* { dg-options "-Wno-psabi" } */
typedef int __attribute__ ((vector_size (8))) V;

void
foo (V d, V e)
{
  d <= e;
  foo ((V){}, (V){});
}