| Index: gcc/gcc/testsuite/gcc.dg/old-style-prom-3.c
|
| diff --git a/gcc/gcc/testsuite/gcc.dg/old-style-prom-3.c b/gcc/gcc/testsuite/gcc.dg/old-style-prom-3.c
|
| index 931a4a7264b364e249c903d048ad3112e2f850c2..720367f2e3303959f3bad0c65bdb9e5ab6fbb4a0 100644
|
| --- a/gcc/gcc/testsuite/gcc.dg/old-style-prom-3.c
|
| +++ b/gcc/gcc/testsuite/gcc.dg/old-style-prom-3.c
|
| @@ -7,8 +7,8 @@ float f (float, float); /* { dg-error "prototype declaration" } */
|
|
|
| float
|
| f (x, y)
|
| - float x;
|
| - float y;
|
| -{ /* { dg-error "promoted argument '.' doesn't match prototype" } */
|
| + float x; /* { dg-error "promoted argument 'x' doesn't match prototype" } */
|
| + float y; /* { dg-error "promoted argument 'y' doesn't match prototype" } */
|
| +{
|
| return x + y;
|
| }
|
|
|