Module: wine Branch: master Commit: 23e91047210a05e1da780f451ae14c0eb78868f2 URL: http://source.winehq.org/git/wine.git/?a=commit;h=23e91047210a05e1da780f451a...
Author: Yann Droneaud yann@droneaud.fr Date: Mon Oct 26 15:33:14 2009 +0100
loader: Use __asm__ keyword instead of asm.
---
loader/main.c | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/loader/main.c b/loader/main.c index 6de500e..628a0fa 100644 --- a/loader/main.c +++ b/loader/main.c @@ -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[] =