Commit 4241d312 by Nathanael Nerode

* config/arm/pe.h: Convert to ISO C90.

From-SVN: r73341
parent bfc8fe1a
2003-11-07 Nathanael Nerode <neroden@gcc.gnu.org>
* config/arm/pe.h: Convert to ISO C90.
2003-11-07 J"orn Rennecke <joern.rennecke@superh.com> 2003-11-07 J"orn Rennecke <joern.rennecke@superh.com>
* sh-protos.h (sh_pch_valid_p): Declare. * sh-protos.h (sh_pch_valid_p): Declare.
......
...@@ -187,7 +187,7 @@ ...@@ -187,7 +187,7 @@
#define DRECTVE_SECTION_FUNCTION \ #define DRECTVE_SECTION_FUNCTION \
void \ void \
drectve_section () \ drectve_section (void) \
{ \ { \
if (in_section != in_drectve) \ if (in_section != in_drectve) \
{ \ { \
...@@ -203,11 +203,8 @@ drectve_section () \ ...@@ -203,11 +203,8 @@ drectve_section () \
ASM_DECLARE_OBJECT_NAME and then switch back to the original section ASM_DECLARE_OBJECT_NAME and then switch back to the original section
afterwards. */ afterwards. */
#define SWITCH_TO_SECTION_FUNCTION \ #define SWITCH_TO_SECTION_FUNCTION \
static void switch_to_section PARAMS ((enum in_section, tree)); \
static void \ static void \
switch_to_section (section, decl) \ switch_to_section (enum in_section section, tree decl) \
enum in_section section; \
tree decl; \
{ \ { \
switch (section) \ switch (section) \
{ \ { \
...@@ -221,3 +218,4 @@ switch_to_section (section, decl) \ ...@@ -221,3 +218,4 @@ switch_to_section (section, decl) \
default: abort (); break; \ default: abort (); break; \
} \ } \
} }
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment