diff options
author | ghazi <ghazi@138bc75d-0d04-0410-961f-82ee72b054a4> | 2000-01-17 15:28:05 +0000 |
---|---|---|
committer | ghazi <ghazi@138bc75d-0d04-0410-961f-82ee72b054a4> | 2000-01-17 15:28:05 +0000 |
commit | 38b9004f47abbfee75df3dba53f7a644203fdbf6 (patch) | |
tree | 7858a169a40f096f95d32ca31da195365adcf856 /gcc/integrate.h | |
parent | 929efc7f759e1f5725c3e6349f92c28193d8f432 (diff) | |
download | gcc-38b9004f47abbfee75df3dba53f7a644203fdbf6.tar.gz |
* ggc-common.c: PROTO -> PARAMS.
* ggc-page.c: Likewise.
* ggc-simple.c: Likewise.
* ggc.h: Likewise.
* global.c: Likewise.
* graph.c: Likewise.
* gthr-win32.h: Likewise.
* haifa-sched.c: Likewise.
* halfpic.h: Likewise.
* integrate.c: Likewise.
* integrate.h: Likewise.
* jump.c: Likewise.
* lcm.c: Likewise.
* local-alloc.c: Likewise.
* loop.c: Likewise.
* loop.h: Likewise.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@31458 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/integrate.h')
-rw-r--r-- | gcc/integrate.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/gcc/integrate.h b/gcc/integrate.h index 4cc75fabbdc..53b78663fd7 100644 --- a/gcc/integrate.h +++ b/gcc/integrate.h @@ -116,18 +116,18 @@ struct inline_remap /* Return a copy of an rtx (as needed), substituting pseudo-register, labels, and frame-pointer offsets as necessary. */ -extern rtx copy_rtx_and_substitute PROTO((rtx, struct inline_remap *, int)); +extern rtx copy_rtx_and_substitute PARAMS ((rtx, struct inline_remap *, int)); /* Copy a declaration when one function is substituted inline into another. */ -extern union tree_node *copy_decl_for_inlining PROTO((union tree_node *, +extern union tree_node *copy_decl_for_inlining PARAMS ((union tree_node *, union tree_node *, union tree_node *)); -extern void try_constants PROTO((rtx, struct inline_remap *)); +extern void try_constants PARAMS ((rtx, struct inline_remap *)); /* Return the label indicated. */ -extern rtx get_label_from_map PROTO((struct inline_remap *, int)); +extern rtx get_label_from_map PARAMS ((struct inline_remap *, int)); /* Set the label indicated. */ #define set_label_in_map(MAP, I, X) ((MAP)->label_map[I] = (X)) |