diff options
author | Nick Clifton <nickc@gcc.gnu.org> | 2001-01-17 23:31:45 +0000 |
---|---|---|
committer | Nick Clifton <nickc@gcc.gnu.org> | 2001-01-17 23:31:45 +0000 |
commit | 6fee9e99fa7644d51100511eed8e28fed2d8f855 (patch) | |
tree | fe93326cf0e438f9b9e1b60abe90528cefdc7028 | |
parent | bc65b5ecf694d5e6a9559c5bad47c75af3121473 (diff) | |
download | gcc-6fee9e99fa7644d51100511eed8e28fed2d8f855.zip gcc-6fee9e99fa7644d51100511eed8e28fed2d8f855.tar.gz gcc-6fee9e99fa7644d51100511eed8e28fed2d8f855.tar.bz2 |
Add missing PARAMS around prototype's parameters
From-SVN: r39102
-rw-r--r-- | gcc/config/rs6000/rs6000.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/config/rs6000/rs6000.c b/gcc/config/rs6000/rs6000.c index 036a6e2..318adb2 100644 --- a/gcc/config/rs6000/rs6000.c +++ b/gcc/config/rs6000/rs6000.c @@ -120,8 +120,8 @@ static int toc_hash_eq PARAMS ((const void *, const void *)); static int toc_hash_mark_entry PARAMS ((void **, void *)); static void toc_hash_mark_table PARAMS ((void *)); static int constant_pool_expr_1 PARAMS ((rtx, int *, int *)); -static void rs6000_free_machine_status (struct function *); -static void rs6000_init_machine_status (struct function *); +static void rs6000_free_machine_status PARAMS ((struct function *)); +static void rs6000_init_machine_status PARAMS ((struct function *)); /* Default register names. */ char rs6000_reg_names[][8] = |