diff options
author | YamaArashi <shadow962@live.com> | 2016-02-16 01:27:33 -0800 |
---|---|---|
committer | YamaArashi <shadow962@live.com> | 2016-02-16 01:27:33 -0800 |
commit | bbe0e72828710bb413ce01e22173adcc761ec7f8 (patch) | |
tree | 30ba7dc9393ebc3a971200ec612debbc8c029da9 /gcc/calls.c | |
parent | ecae31d652106c1f3b7429570de013c3bbf33e7a (diff) |
remove ANSI_PROTOTYPES ifdefs
Diffstat (limited to 'gcc/calls.c')
-rwxr-xr-x | gcc/calls.c | 26 |
1 files changed, 0 insertions, 26 deletions
diff --git a/gcc/calls.c b/gcc/calls.c index dbcd98d..cc6c6ac 100755 --- a/gcc/calls.c +++ b/gcc/calls.c @@ -2319,12 +2319,6 @@ expand_call (exp, target, ignore) void emit_library_call (rtx orgfun, int no_queue, enum machine_mode outmode, int nargs, ...) { -#ifndef ANSI_PROTOTYPES - rtx orgfun; - int no_queue; - enum machine_mode outmode; - int nargs; -#endif va_list p; /* Total size in bytes of all the stack-parms scanned so far. */ struct args_size args_size; @@ -2366,12 +2360,6 @@ emit_library_call (rtx orgfun, int no_queue, enum machine_mode outmode, int narg VA_START (p, nargs); -#ifndef ANSI_PROTOTYPES - orgfun = va_arg (p, rtx); - no_queue = va_arg (p, int); - outmode = va_arg (p, enum machine_mode); - nargs = va_arg (p, int); -#endif fun = orgfun; @@ -2807,13 +2795,6 @@ rtx emit_library_call_value (rtx orgfun, rtx value, int no_queue, enum machine_mode outmode, int nargs, ...) { -#ifndef ANSI_PROTOTYPES - rtx orgfun; - rtx value; - int no_queue; - enum machine_mode outmode; - int nargs; -#endif va_list p; /* Total size in bytes of all the stack-parms scanned so far. */ struct args_size args_size; @@ -2862,13 +2843,6 @@ emit_library_call_value (rtx orgfun, rtx value, int no_queue, VA_START (p, nargs); -#ifndef ANSI_PROTOTYPES - orgfun = va_arg (p, rtx); - value = va_arg (p, rtx); - no_queue = va_arg (p, int); - outmode = va_arg (p, enum machine_mode); - nargs = va_arg (p, int); -#endif is_const = no_queue; fun = orgfun; |