summaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.dg/pr99104.c
blob: 807e1da4090803f7e6aac1312aff0ef6838d0aeb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
/* PR target/99104 */
/* { dg-do compile { target int128 } } */
/* { dg-options "-O2 -fsel-sched-pipelining -fselective-scheduling2 -funroll-loops" } */

__int128 a;
int b;
int foo (void);

int __attribute__ ((simd))
bar (void)
{
  a = ~a;
  if (foo ())
    b = 0;
}