]> git.ipfire.org Git - thirdparty/gcc.git/blame - gcc/testsuite/gcc.dg/pr84670-1.c
Update copyright years.
[thirdparty/gcc.git] / gcc / testsuite / gcc.dg / pr84670-1.c
CommitLineData
36a9f50c
RB
1/* { dg-do compile { target int128 } } */
2/* { dg-options "-O2 -fno-tree-dominator-opts" } */
3
4int a, b, c, d;
5
6int
7foo (void)
8{
9 __int128 i;
10l:
11 i -= c;
12 if (b)
13 goto l;
14 __builtin_mul_overflow (0, a, &c);
15 if (d)
16 goto l;
17 return i;
18}