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/emit-rtl.c | |
parent | 9382e1a90b218b4b93bf53c01ef163925cf224dc (diff) |
get rid of PROTO macros
Diffstat (limited to 'gcc/emit-rtl.c')
-rwxr-xr-x | gcc/emit-rtl.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/gcc/emit-rtl.c b/gcc/emit-rtl.c index 3034a55..9bacb2e 100755 --- a/gcc/emit-rtl.c +++ b/gcc/emit-rtl.c @@ -236,9 +236,9 @@ extern int rtx_equal_function_value_matters; extern char *emit_filename; extern int emit_lineno; -static rtx make_jump_insn_raw PROTO((rtx)); -static rtx make_call_insn_raw PROTO((rtx)); -static rtx find_line_note PROTO((rtx)); +static rtx make_jump_insn_raw (rtx); +static rtx make_call_insn_raw (rtx); +static rtx find_line_note (rtx); rtx gen_rtx_CONST_INT (mode, arg) @@ -334,7 +334,7 @@ gen_rtx_MEM (mode, addr) /*VARARGS2*/ rtx -gen_rtx VPROTO((enum rtx_code code, enum machine_mode mode, ...)) +gen_rtx (enum rtx_code code, enum machine_mode mode, ...) { #ifndef ANSI_PROTOTYPES enum rtx_code code; @@ -417,7 +417,7 @@ gen_rtx VPROTO((enum rtx_code code, enum machine_mode mode, ...)) /*VARARGS1*/ rtvec -gen_rtvec VPROTO((int n, ...)) +gen_rtvec (int n, ...) { #ifndef ANSI_PROTOTYPES int n; |