diff options
author | Kaveh R. Ghazi <ghazi@caip.rutgers.edu> | 2000-01-17 15:28:05 +0000 |
---|---|---|
committer | Kaveh Ghazi <ghazi@gcc.gnu.org> | 2000-01-17 15:28:05 +0000 |
commit | 3fe41456ed2b825719c3f4c5e4bd90c71f1fc677 (patch) | |
tree | 7858a169a40f096f95d32ca31da195365adcf856 /gcc/integrate.h | |
parent | a94ae8f5dd6e7b921a0169c0471d6a38d49cdca9 (diff) | |
download | gcc-3fe41456ed2b825719c3f4c5e4bd90c71f1fc677.tar.gz |
ggc-common.c: PROTO -> PARAMS.
* 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.
From-SVN: r31458
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)) |