comparison gcc/testsuite/gcc.dg/pr84670-1.c @ 131:84e7813d76e9

gcc-8.2
author mir3636
date Thu, 25 Oct 2018 07:37:49 +0900
parents
children
comparison
equal deleted inserted replaced
111:04ced10e8804 131:84e7813d76e9
1 /* { dg-do compile { target int128 } } */
2 /* { dg-options "-O2 -fno-tree-dominator-opts" } */
3
4 int a, b, c, d;
5
6 int
7 foo (void)
8 {
9 __int128 i;
10 l:
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 }