diff options
author | Jim Wilson <wilson@gcc.gnu.org> | 1993-03-19 18:17:20 -0800 |
---|---|---|
committer | Jim Wilson <wilson@gcc.gnu.org> | 1993-03-19 18:17:20 -0800 |
commit | 521f2d6fcba7cc07b276d31e8d0c1af501361803 (patch) | |
tree | ca321d72ba838fd9f30b00fc2dfa9cc47c34cc20 /gcc/integrate.h | |
parent | d3379e9151ffd3974cf50aaf3e37033ab579c610 (diff) | |
download | gcc-521f2d6fcba7cc07b276d31e8d0c1af501361803.tar.gz |
Add prototypes.
From-SVN: r3794
Diffstat (limited to 'gcc/integrate.h')
-rw-r--r-- | gcc/integrate.h | 11 |
1 files changed, 3 insertions, 8 deletions
diff --git a/gcc/integrate.h b/gcc/integrate.h index 6433d470ffb..0f59ba255df 100644 --- a/gcc/integrate.h +++ b/gcc/integrate.h @@ -107,15 +107,10 @@ 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 (); +extern rtx copy_rtx_and_substitute PROTO((rtx, struct inline_remap *)); -extern void try_constants (); +extern void try_constants PROTO((rtx, struct inline_remap *)); -extern void mark_stores (); - -/* We do some simple constant folding optimization. This optimization - really exists primarily to save time inlining a function. It - also helps users who ask for inline functions without -O. */ -extern rtx try_fold_condition (); +extern void mark_stores PROTO((rtx, rtx)); extern rtx *global_const_equiv_map; |