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: Martin Storsjo <martin@martin.st> Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
parent
babbf352b6
commit
c22e8645b0
|
@ -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)
|
||||
|
|
Loading…
Reference in New Issue