]> git.ipfire.org Git - thirdparty/gcc.git/blame - gcc/testsuite/gcc.dg/pr83723.c
Update copyright years.
[thirdparty/gcc.git] / gcc / testsuite / gcc.dg / pr83723.c
CommitLineData
33006d53
JJ
1/* PR rtl-optimization/83723 */
2/* { dg-do compile } */
3/* { dg-options "-g -O2" } */
4/* { dg-additional-options "-mfpmath=sse -msse2" { target i?86-*-* x86_64-*-* } } */
5/* { dg-additional-options "-fpie" { target pie } } */
6
7int foo (void);
8float bar (float);
9int *v;
10
11void
12baz (void)
13{
14 float a = bar (0.0);
15 bar (a);
16 if (v)
17 bar (1.0);
18 if (a < 1.0)
19 a = foo () / a;
20}