diff options
| author | nickc <nickc@138bc75d-0d04-0410-961f-82ee72b054a4> | 2001-01-17 22:35:30 +0000 |
|---|---|---|
| committer | nickc <nickc@138bc75d-0d04-0410-961f-82ee72b054a4> | 2001-01-17 22:35:30 +0000 |
| commit | c7e6046fc65cacde6ee6e04ba939689a09bbc84b (patch) | |
| tree | 054512ada822655605348d398c50e2b71c13e535 | |
| parent | 7b6a8130a67486767fed2141d907b4e7bd3d57ec (diff) | |
| download | ppe42-gcc-c7e6046fc65cacde6ee6e04ba939689a09bbc84b.tar.gz ppe42-gcc-c7e6046fc65cacde6ee6e04ba939689a09bbc84b.zip | |
add missing prototypes
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@39100 138bc75d-0d04-0410-961f-82ee72b054a4
| -rw-r--r-- | gcc/ChangeLog | 5 | ||||
| -rw-r--r-- | gcc/config/rs6000/rs6000.c | 2 |
2 files changed, 7 insertions, 0 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index fea02e5225e..99947670340 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +2001-01-17 Nick Clifton <nickc@redhat.com> + + * config/rs6000/rs6000.c: Add prototypes for {init|free}_ + machine_status. + 2001-01-17 Jim Wilson <wilson@redhat.com> * invoke.texi (IA-64 options): Improve. diff --git a/gcc/config/rs6000/rs6000.c b/gcc/config/rs6000/rs6000.c index bb4879382aa..036a6e2007c 100644 --- a/gcc/config/rs6000/rs6000.c +++ b/gcc/config/rs6000/rs6000.c @@ -120,6 +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 *); /* Default register names. */ char rs6000_reg_names[][8] = |

