blob: da0a8a63a7d2ce38e2e59ccd0b9473983c83abcf (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
// { dg-do assemble }
// PRMS Id: 4574
// Bug: g++ prefers int to double for float& argument
inline double abs (double x) { return x;}
inline int abs (int i) { return i; }
float& fn(float& f)
{
return f;
}
void foo()
{
float f = 23.45;
abs(fn(f)); // gets bogus warning
}
|