Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(119)

Unified Diff: gcc/gcc/testsuite/gcc.dg/old-style-prom-3.c

Issue 3050029: [gcc] GCC 4.5.0=>4.5.1 (Closed) Base URL: ssh://git@gitrw.chromium.org:9222/nacl-toolchain.git
Patch Set: Created 10 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « gcc/gcc/testsuite/gcc.dg/noncompile/20040629-1.c ('k') | gcc/gcc/testsuite/gcc.dg/overflow-warn-2.c » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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;
}
« no previous file with comments | « gcc/gcc/testsuite/gcc.dg/noncompile/20040629-1.c ('k') | gcc/gcc/testsuite/gcc.dg/overflow-warn-2.c » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698