Commit 1362b0c0 authored by Brendan Shanks's avatar Brendan Shanks Committed by Alexandre Julliard

include: Add __ASM_LOCAL_LABEL macro.

parent e5c540c5
......@@ -27,6 +27,12 @@
# define __ASM_NAME(name) name
#endif
#if defined(__APPLE__)
# define __ASM_LOCAL_LABEL(label) "L" label
#else
# define __ASM_LOCAL_LABEL(label) ".L" label
#endif
#if defined(__WINE_PE_BUILD) && defined(__i386__)
# define __ASM_STDCALL(name,args) "_" name "@" #args
# define __ASM_FASTCALL(name,args) "@" name "@" #args
......
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