]> git.ipfire.org Git - thirdparty/gcc.git/blame - gcc/testsuite/gcc.dg/pr96931.c
Update copyright years.
[thirdparty/gcc.git] / gcc / testsuite / gcc.dg / pr96931.c
CommitLineData
fab77644
RB
1/* { dg-do compile } */
2/* { dg-options "-O1 -fpredictive-commoning -fno-tree-loop-im" } */
3
4int bl;
5
6void
7p3 (void);
8
9void __attribute__ ((returns_twice))
10ie (void)
11{
12 p3 ();
13
14 bl = 0;
15 for (;;)
16 ++bl;
17
18 ie ();
19}