aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gcc.dg/pr42078.c
blob: 8107ff5557a5d86e3be40258bc928c6b806b82e5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
/* PR tree-optimization/42078 */
/* { dg-do compile } */
/* { dg-options "-g -O -ffast-math" } */

double sqrt (double x);

float
foo (float x)
{
  float y = sqrt (x);
  return x / y;
}

inline float
bar (float x)
{
  float y = sqrt (x);
  float a = y;
  float b = y;
  float c = y;
  return x / y;
}