aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.dg/pr97238.c
blob: 746e93a9750233a5295ebe62d3f4709cbd19134c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
/* { dg-do compile } */
/* { dg-options "-O -Wno-psabi -w" } */

typedef int __attribute__ ((__vector_size__ (8))) V;
int b, c, e;
V d;

V
foo (void)
{
  return (b || e) | c > d | ((b || e) | c > d);
}