OSDN Git Service

gcc/java/
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / gcc.dg / dremf-type-compat-2.c
index 61f0ba8..980ead1 100644 (file)
@@ -11,8 +11,8 @@ float dremf (float, float); /* { dg-warning "prototype declaration" } */
 
 float
 dremf (x, y)
-     float x;
-     float y;
-{ /* { dg-warning "promoted argument '.' doesn't match prototype" } */
+     float x; /* { dg-warning "promoted argument 'x' doesn't match prototype" } */
+     float y; /* { dg-warning "promoted argument 'y' doesn't match prototype" } */
+{
   return x + y;
 }