Commit dc61a30b authored by Hans Leidekker's avatar Hans Leidekker Committed by Alexandre Julliard

MinGW portability fix.

parent e32e1f05
...@@ -188,7 +188,7 @@ struct statvfs ...@@ -188,7 +188,7 @@ struct statvfs
/* Macros to define assembler functions somewhat portably */ /* Macros to define assembler functions somewhat portably */
#ifdef __GNUC__ #if defined(__GNUC__) && !defined(__MINGW32__)
# define __ASM_GLOBAL_FUNC(name,code) \ # define __ASM_GLOBAL_FUNC(name,code) \
__asm__( ".text\n\t" \ __asm__( ".text\n\t" \
".align 4\n\t" \ ".align 4\n\t" \
...@@ -197,7 +197,7 @@ struct statvfs ...@@ -197,7 +197,7 @@ struct statvfs
__ASM_NAME(#name) ":\n\t" \ __ASM_NAME(#name) ":\n\t" \
code \ code \
"\n\t.previous" ); "\n\t.previous" );
#else /* __GNUC__ */ #else /* defined(__GNUC__) && !defined(__MINGW32__) */
# define __ASM_GLOBAL_FUNC(name,code) \ # define __ASM_GLOBAL_FUNC(name,code) \
void __asm_dummy_##name(void) { \ void __asm_dummy_##name(void) { \
asm( ".align 4\n\t" \ asm( ".align 4\n\t" \
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment