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/stupid.c | |
parent | 9382e1a90b218b4b93bf53c01ef163925cf224dc (diff) |
get rid of PROTO macros
Diffstat (limited to 'gcc/stupid.c')
-rwxr-xr-x | gcc/stupid.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/gcc/stupid.c b/gcc/stupid.c index 385831d..c81894d 100755 --- a/gcc/stupid.c +++ b/gcc/stupid.c @@ -123,11 +123,11 @@ static HARD_REG_SET *after_insn_hard_regs; #define MARK_LIVE_AFTER(INSN,REGNO) \ SET_HARD_REG_BIT (after_insn_hard_regs[INSN_SUID (INSN)], (REGNO)) -static int stupid_reg_compare PROTO((const GENERIC_PTR,const GENERIC_PTR)); -static int stupid_find_reg PROTO((int, enum reg_class, enum machine_mode, - int, int, int)); -static void stupid_mark_refs PROTO((rtx, struct insn_chain *)); -static void find_clobbered_regs PROTO((rtx, rtx)); +static int stupid_reg_compare (const GENERIC_PTR,const GENERIC_PTR); +static int stupid_find_reg (int, enum reg_class, enum machine_mode, + int, int, int); +static void stupid_mark_refs (rtx, struct insn_chain *); +static void find_clobbered_regs (rtx, rtx); /* For communication between stupid_life_analysis and find_clobbered_regs. */ static struct insn_chain *current_chain; |