loader: Use __asm__ keyword instead of asm.
This commit is contained in:
parent
fec1e88984
commit
23e9104721
|
@ -40,8 +40,8 @@
|
|||
|
||||
#ifdef __APPLE__
|
||||
|
||||
asm(".zerofill WINE_DOS, WINE_DOS, ___wine_dos, 0x40000000");
|
||||
asm(".zerofill WINE_SHAREDHEAP, WINE_SHAREDHEAP, ___wine_shared_heap, 0x03000000");
|
||||
__asm__(".zerofill WINE_DOS, WINE_DOS, ___wine_dos, 0x40000000");
|
||||
__asm__(".zerofill WINE_SHAREDHEAP, WINE_SHAREDHEAP, ___wine_shared_heap, 0x03000000");
|
||||
extern char __wine_dos[0x40000000], __wine_shared_heap[0x03000000];
|
||||
|
||||
static const struct wine_preload_info wine_main_preload_info[] =
|
||||
|
|
Loading…
Reference in New Issue