]> git.ipfire.org Git - thirdparty/gcc.git/blame - gcc/testsuite/gcc.dg/pr97741.c
Update copyright years.
[thirdparty/gcc.git] / gcc / testsuite / gcc.dg / pr97741.c
CommitLineData
129e1a8a
AM
1/* { dg-do compile } */
2/* { dg-options "-Wall -Wextra -fno-strict-aliasing -fwrapv -Os -fno-toplevel-reorder -fno-tree-ccp -fno-tree-fre" } */
3
4short a = 0;
5long b = 0;
6char c = 0;
7void d() {
8 int e = 0;
9f:
10 for (a = 6; a;)
11 c = e;
12 e = 0;
13 for (; e == 20; ++e)
14 for (; b;)
15 goto f;
16}
17int main() { return 0; }