mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-10 02:54:58 -06:00
Replace gcc variadic macro extension with C99 version
Signed-off-by: Blue Swirl <blauwirbel@gmail.com>
This commit is contained in:
parent
4cfce484c5
commit
001faf3269
70 changed files with 268 additions and 268 deletions
|
@ -42,7 +42,7 @@
|
|||
|
||||
#ifdef TARGET_X86_64
|
||||
#define X86_64_ONLY(x) x
|
||||
#define X86_64_DEF(x...) x
|
||||
#define X86_64_DEF(...) __VA_ARGS__
|
||||
#define CODE64(s) ((s)->code64)
|
||||
#define REX_X(s) ((s)->rex_x)
|
||||
#define REX_B(s) ((s)->rex_b)
|
||||
|
@ -52,7 +52,7 @@
|
|||
#endif
|
||||
#else
|
||||
#define X86_64_ONLY(x) NULL
|
||||
#define X86_64_DEF(x...)
|
||||
#define X86_64_DEF(...)
|
||||
#define CODE64(s) 0
|
||||
#define REX_X(s) 0
|
||||
#define REX_B(s) 0
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue