diff options
author | law <law@138bc75d-0d04-0410-961f-82ee72b054a4> | 1998-06-19 21:59:49 +0000 |
---|---|---|
committer | law <law@138bc75d-0d04-0410-961f-82ee72b054a4> | 1998-06-19 21:59:49 +0000 |
commit | 72ad841907fa0f35068af1396228f3c943a39f39 (patch) | |
tree | 42037a0252b467a523bdf550f1e40c88ae5e2224 /gcc/explow.c | |
parent | 38bb3dbf64bc90f152dba76c890b57c7e5dad9a9 (diff) | |
download | gcc-72ad841907fa0f35068af1396228f3c943a39f39.tar.gz |
* explow.c (emit_stack_save): Add prototype for FCN.
(emit_stack_restore): Likewise.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@20609 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/explow.c')
-rw-r--r-- | gcc/explow.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/explow.c b/gcc/explow.c index affb2196bd9..8117836c7b0 100644 --- a/gcc/explow.c +++ b/gcc/explow.c @@ -866,7 +866,7 @@ emit_stack_save (save_level, psave, after) { rtx sa = *psave; /* The default is that we use a move insn and save in a Pmode object. */ - rtx (*fcn) () = gen_move_insn; + rtx (*fcn) PROTO ((rtx, rtx)) = gen_move_insn; enum machine_mode mode = STACK_SAVEAREA_MODE (save_level); /* See if this machine has anything special to do for this kind of save. */ @@ -948,7 +948,7 @@ emit_stack_restore (save_level, sa, after) rtx sa; { /* The default is that we use a move insn. */ - rtx (*fcn) () = gen_move_insn; + rtx (*fcn) PROTO ((rtx, rtx)) = gen_move_insn; /* See if this machine has anything special to do for this kind of save. */ switch (save_level) |