+2010-02-20 Manuel López-Ibáñez <manu@gcc.gnu.org>
+
+ PR 43128
+ * c-c++-common/pr41779.c: Fix broken testcase.
+
2010-02-19 Manuel López-Ibáñez <manu@gcc.gnu.org>
PR 36513
/* { dg-options "-Wconversion" { target c++ } } */
/* { dg-require-effective-target large_double } */
-float f(float x, unsigned short y)
+float f1(float x, unsigned short y)
{
return x * y;
}
-float f(float x, short y)
+float f2(float x, short y)
{
return x * y;
}
-float f(float x, char y)
+float f3(float x, char y)
{
return x * y;
}
-float f(float x, unsigned char y)
+float f4(float x, unsigned char y)
{
return x * y;
}
-float f(float x, int y)
+float f5(float x, int y)
{
return x * y; /* { dg-warning "conversion" } */
}