Skip to content

Commit cb929dc

Browse files
committed
[builtins] Fix the missing assembly on Darwin
This was introduced in r359413. llvm-svn: 359421
1 parent 26366c3 commit cb929dc

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

compiler-rt/lib/builtins/int_lib.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@
5454
#elif defined(__MACH__)
5555
#define COMPILER_RT_ALIAS(name, aliasname) \
5656
__asm__(".globl " SYMBOL_NAME(aliasname)); \
57-
__asm__(SYMBOL_NAME(aliasname) " = " SYMBOL_NAME(name)) \
57+
__asm__(SYMBOL_NAME(aliasname) " = " SYMBOL_NAME(name)); \
5858
COMPILER_RT_ABI __typeof(name) aliasname;
5959
#elif defined(_WIN32)
6060
#define COMPILER_RT_ALIAS(name, aliasname)

0 commit comments

Comments
 (0)