diff options
author | YamaArashi <shadow962@live.com> | 2016-02-16 01:03:54 -0800 |
---|---|---|
committer | YamaArashi <shadow962@live.com> | 2016-02-16 01:03:54 -0800 |
commit | ecae31d652106c1f3b7429570de013c3bbf33e7a (patch) | |
tree | 6981957216b10aad71c792714a25c5750611754e /gcc/explow.c | |
parent | 9382e1a90b218b4b93bf53c01ef163925cf224dc (diff) |
get rid of PROTO macros
Diffstat (limited to 'gcc/explow.c')
-rwxr-xr-x | gcc/explow.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/gcc/explow.c b/gcc/explow.c index e9f32ec..d126f27 100755 --- a/gcc/explow.c +++ b/gcc/explow.c @@ -35,8 +35,8 @@ Boston, MA 02111-1307, USA. */ #define PREFERRED_STACK_BOUNDARY STACK_BOUNDARY #endif -static rtx break_out_memory_refs PROTO((rtx)); -static void emit_stack_probe PROTO((rtx)); +static rtx break_out_memory_refs (rtx); +static void emit_stack_probe (rtx); /* Return an rtx for the sum of X and the integer C. This function should be used via the `plus_constant' macro. */ @@ -888,7 +888,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) PROTO ((rtx, rtx)) = gen_move_insn; + rtx (*fcn) (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. */ @@ -970,7 +970,7 @@ emit_stack_restore (save_level, sa, after) rtx sa; { /* The default is that we use a move insn. */ - rtx (*fcn) PROTO ((rtx, rtx)) = gen_move_insn; + rtx (*fcn) (rtx, rtx) = gen_move_insn; /* See if this machine has anything special to do for this kind of save. */ switch (save_level) |