diff options
author | Kazu Hirata <kazu@codesourcery.com> | 2006-01-18 06:39:07 +0000 |
---|---|---|
committer | Kazu Hirata <kazu@gcc.gnu.org> | 2006-01-18 06:39:07 +0000 |
commit | e8d6954b961c49410715d4951de89cd38cded3b6 (patch) | |
tree | 675ee9a4b73ac4178ba6dd9281642bf58512ef86 /gcc/function.c | |
parent | a0dc2bb65448c58c647e810c50bcf7ac2f498634 (diff) | |
download | gcc-e8d6954b961c49410715d4951de89cd38cded3b6.zip gcc-e8d6954b961c49410715d4951de89cd38cded3b6.tar.gz gcc-e8d6954b961c49410715d4951de89cd38cded3b6.tar.bz2 |
function.c (instantiate_virtual_regs): Make it static.
* function.c (instantiate_virtual_regs): Make it static.
* function.h: Remove the prototype for
instantiate_virtual_regs.
From-SVN: r109874
Diffstat (limited to 'gcc/function.c')
-rw-r--r-- | gcc/function.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/function.c b/gcc/function.c index f5da84c..b7a0896 100644 --- a/gcc/function.c +++ b/gcc/function.c @@ -1657,7 +1657,7 @@ instantiate_decls (tree fndecl) /* Pass through the INSNS of function FNDECL and convert virtual register references to hard register references. */ -void +static void instantiate_virtual_regs (void) { rtx insn; |