]> git.ipfire.org Git - thirdparty/gcc.git/blame - gcc/testsuite/gcc.dg/pr97806.c
Update copyright years.
[thirdparty/gcc.git] / gcc / testsuite / gcc.dg / pr97806.c
CommitLineData
64326bb4
RB
1/* { dg-do compile } */
2/* { dg-options "-O2" } */
3
4int b;
5long c;
6int g();
7void h(long *);
8void i(long *);
9void d() {
10 int e, f = b - e;
11 if (g())
12 h(&c + f);
13 else
14 i(&c + f);
15 __builtin_memset(0, 0, f * 8);
16}