Commit a2369ed3 by Dale Johannesen Committed by Dale Johannesen

Use ISO C90 prototypes.

From-SVN: r71336
parent 4ca0d6d4
2003-09-12 Dale Johannesen <dale@apple.com>
* config/rs6000/rs6000-protos.h: Use C90 prototypes.
* config/rs6000/rs6000-c.c: Ditto.
* config/rs6000/rs6000.c: Ditto.
* config/rs6000/ sysv4.h: Ditto.
2003-09-12 Chris Lattner <sabre@nondot.org> 2003-09-12 Chris Lattner <sabre@nondot.org>
* loop.c: Move comments describing BIV's and GIV's to top of file * loop.c: Move comments describing BIV's and GIV's to top of file
......
...@@ -48,8 +48,7 @@ ...@@ -48,8 +48,7 @@
} while (0) } while (0)
void void
rs6000_pragma_longcall (pfile) rs6000_pragma_longcall (cpp_reader *pfile ATTRIBUTE_UNUSED)
cpp_reader *pfile ATTRIBUTE_UNUSED;
{ {
tree x, n; tree x, n;
...@@ -80,8 +79,7 @@ rs6000_pragma_longcall (pfile) ...@@ -80,8 +79,7 @@ rs6000_pragma_longcall (pfile)
#define builtin_assert(TXT) cpp_assert (pfile, TXT) #define builtin_assert(TXT) cpp_assert (pfile, TXT)
void void
rs6000_cpu_cpp_builtins (pfile) rs6000_cpu_cpp_builtins (cpp_reader *pfile)
cpp_reader *pfile;
{ {
if (TARGET_POWER2) if (TARGET_POWER2)
builtin_define ("_ARCH_PWR2"); builtin_define ("_ARCH_PWR2");
......
...@@ -494,7 +494,7 @@ toc_section () \ ...@@ -494,7 +494,7 @@ toc_section () \
} \ } \
} \ } \
\ \
extern int in_toc_section PARAMS ((void)); \ extern int in_toc_section (void); \
int in_toc_section () \ int in_toc_section () \
{ \ { \
return in_section == in_toc; \ return in_section == in_toc; \
......
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