mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-01 14:53:54 -06:00
Avoid name clashes with symbols that leak from system headers
Signed-off-by: malc <av1474@comtv.ru>
This commit is contained in:
parent
f6548c0a4b
commit
3efa9a672e
4 changed files with 45 additions and 40 deletions
|
@ -3533,12 +3533,12 @@ struct target_mcontext {
|
|||
varies depending on whether we're PPC64 or not: PPC64 splits
|
||||
them apart; PPC32 stuffs them together. */
|
||||
#if defined(TARGET_PPC64)
|
||||
#define NVRREG 34
|
||||
#define QEMU_NVRREG 34
|
||||
#else
|
||||
#define NVRREG 33
|
||||
#define QEMU_NVRREG 33
|
||||
#endif
|
||||
ppc_avr_t altivec[NVRREG];
|
||||
#undef NVRREG
|
||||
ppc_avr_t altivec[QEMU_NVRREG];
|
||||
#undef QEMU_NVRREG
|
||||
} mc_vregs __attribute__((__aligned__(16)));
|
||||
};
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue