diff options
author | YamaArashi <shadow962@live.com> | 2016-02-16 01:59:54 -0800 |
---|---|---|
committer | YamaArashi <shadow962@live.com> | 2016-02-16 01:59:54 -0800 |
commit | 75ff61fd74b379f7278b1042e269ea3a6ee66518 (patch) | |
tree | e7476ce3b6211abd2ed93d60c544e047abb24ec4 /gcc/calls.c | |
parent | bbe0e72828710bb413ce01e22173adcc761ec7f8 (diff) |
get rid of VA_START macro
Diffstat (limited to 'gcc/calls.c')
-rwxr-xr-x | gcc/calls.c | 4 |
1 files changed, 2 insertions, 2 deletions
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; |