Commit c22e8645 authored by Martin Storsjo's avatar Martin Storsjo Committed by Alexandre Julliard

wine/asm.h: Use __ASM_CFI on clang too, despite not defining __GCC_HAVE_DWARF2_CFI_ASM.

It has already been unconditionally enabled for macOS (which uses clang). Signed-off-by: 's avatarMartin Storsjo <martin@martin.st> Signed-off-by: 's avatarAlexandre Julliard <julliard@winehq.org>
parent babbf352
......@@ -33,7 +33,7 @@
# define __ASM_STDCALL(name,args) __ASM_NAME(name)
#endif
#if defined(__GCC_HAVE_DWARF2_CFI_ASM) || defined(__APPLE__)
#if defined(__GCC_HAVE_DWARF2_CFI_ASM) || defined(__APPLE__) || defined(__clang__)
# define __ASM_CFI(str) str
#else
# define __ASM_CFI(str)
......
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