From bbe0e72828710bb413ce01e22173adcc761ec7f8 Mon Sep 17 00:00:00 2001 From: YamaArashi Date: Tue, 16 Feb 2016 01:27:33 -0800 Subject: remove ANSI_PROTOTYPES ifdefs --- gcc/calls.c | 26 -------------------------- 1 file changed, 26 deletions(-) (limited to 'gcc/calls.c') 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; -- cgit v1.2.3