]> git.ipfire.org Git - thirdparty/gcc.git/blame - gcc/testsuite/gcc.dg/pr103838.c
Update copyright years.
[thirdparty/gcc.git] / gcc / testsuite / gcc.dg / pr103838.c
CommitLineData
78ee8381
JJ
1/* PR debug/103838 */
2/* { dg-do compile } */
3/* { dg-options "-O2 -fcompare-debug" } */
4
5#ifdef __SIZEOF_INT128__
6__int128 m;
7#else
8long long m;
9#endif
10int n;
11
12__attribute__((noinline)) void
13bar (void)
14{
15 n += !!m;
16}
17
18void
19foo (void)
20{
21 int i;
22
23 for (i = 0; i < 2; ++i)
24 {
25 bar ();
26 m /= 3;
27 }
28}