wine/asm.h: Quote stdcall decored symbols.
LLVM can't handle @ char in non-quoted symbol names. Signed-off-by: Jacek Caban <jacek@codeweavers.com> Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
parent
0f15515cc2
commit
bdcc54c19d
|
@ -28,7 +28,7 @@
|
|||
#endif
|
||||
|
||||
#if defined(_WIN32) && defined(__i386__)
|
||||
# define __ASM_STDCALL(name,args) __ASM_NAME(name) "@" #args
|
||||
# define __ASM_STDCALL(name,args) "\"" __ASM_NAME(name) "@" #args "\""
|
||||
#else
|
||||
# define __ASM_STDCALL(name,args) __ASM_NAME(name)
|
||||
#endif
|
||||
|
|
Loading…
Reference in New Issue