From 75ff61fd74b379f7278b1042e269ea3a6ee66518 Mon Sep 17 00:00:00 2001 From: YamaArashi Date: Tue, 16 Feb 2016 01:59:54 -0800 Subject: get rid of VA_START macro --- gcc/calls.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'gcc/calls.c') diff --git a/gcc/calls.c b/gcc/calls.c index cc6c6ac..b58e8f3 100755 --- a/gcc/calls.c +++ b/gcc/calls.c @@ -2358,7 +2358,7 @@ emit_library_call (rtx orgfun, int no_queue, enum machine_mode outmode, int narg #endif #endif - VA_START (p, nargs); + va_start (p, nargs); fun = orgfun; @@ -2841,7 +2841,7 @@ emit_library_call_value (rtx orgfun, rtx value, int no_queue, #endif #endif - VA_START (p, nargs); + va_start (p, nargs); is_const = no_queue; -- cgit v1.2.3