Don't use .previous instruction on Darwin.

oldstable
Pierre d'Herbemont 2004-06-14 17:00:38 +00:00 committed by Alexandre Julliard
parent 6c91e9bff6
commit 552b06a0a4
1 changed files with 2 additions and 2 deletions

View File

@ -188,7 +188,7 @@ struct statvfs
/* Macros to define assembler functions somewhat portably */
#if defined(__GNUC__) && !defined(__MINGW32__)
#if defined(__GNUC__) && !defined(__MINGW32__) && !defined(__APPLE__)
# define __ASM_GLOBAL_FUNC(name,code) \
__asm__( ".text\n\t" \
".align 4\n\t" \
@ -197,7 +197,7 @@ struct statvfs
__ASM_NAME(#name) ":\n\t" \
code \
"\n\t.previous" );
#else /* defined(__GNUC__) && !defined(__MINGW32__) */
#else /* defined(__GNUC__) && !defined(__MINGW32__) && !defined(__APPLE__) */
# define __ASM_GLOBAL_FUNC(name,code) \
void __asm_dummy_##name(void) { \
asm( ".align 4\n\t" \