mirror of
https://github.com/mirror/tinycc.git
synced 2025-01-29 06:10:09 +08:00
Remove semicolon in x86-64 va_arg definition.
This commit is contained in:
parent
0b6652003c
commit
9ffd77f18d
@ -13,7 +13,7 @@ void __va_end(va_list ap);
|
|||||||
|
|
||||||
#define va_start(ap, last) ((ap) = __va_start(__builtin_frame_address(0)))
|
#define va_start(ap, last) ((ap) = __va_start(__builtin_frame_address(0)))
|
||||||
#define va_arg(ap, type) \
|
#define va_arg(ap, type) \
|
||||||
(*(type *)(__va_arg(ap, __builtin_va_arg_types(type), sizeof(type))));
|
(*(type *)(__va_arg(ap, __builtin_va_arg_types(type), sizeof(type))))
|
||||||
#define va_copy(dest, src) ((dest) = __va_copy(src))
|
#define va_copy(dest, src) ((dest) = __va_copy(src))
|
||||||
#define va_end(ap) __va_end(ap)
|
#define va_end(ap) __va_end(ap)
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user