1 /* PR rtl-optimization/87246 */
2 /* { dg-do compile { target int128 } } */
3 /* { dg-options "-O2 -w -fnon-call-exceptions -fno-split-wide-types" } */
4
5 __int128 zd;
6 int c1;
7
8 void
9 s2 (__int128 *qv)
10 {
11 if (*qv != 0)
12 {
13 zd = 0;
14 c1 = c1 <= *qv;
15 }
16 }
17
18 void
19 lt (unsigned int vb)
20 {
21 s2 (vb + 1);
22 }