Module: wine Branch: master Commit: bdcc54c19d7356077362e7001aa9c4a08919af89 URL: https://source.winehq.org/git/wine.git/?a=commit;h=bdcc54c19d7356077362e7001... Author: Jacek Caban <jacek(a)codeweavers.com> Date: Sun Aug 25 18:50:08 2019 +0200 wine/asm.h: Quote stdcall decored symbols. LLVM can't handle @ char in non-quoted symbol names. Signed-off-by: Jacek Caban <jacek(a)codeweavers.com> Signed-off-by: Alexandre Julliard <julliard(a)winehq.org> --- include/wine/asm.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/wine/asm.h b/include/wine/asm.h index 01dfdb1..66062c0 100644 --- a/include/wine/asm.h +++ b/include/wine/asm.h @@ -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