Skip to content

Commit a205ebb

Browse files
committed
[builtins] Fix assembly in arm sync-ops.h
This assembly is part of a macro that was reformatted in D60351. The missing space between push and { results in: Error: bad instruction `push{r4, r5,r6,lr}' llvm-svn: 365957
1 parent a3aa67b commit a205ebb

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

compiler-rt/lib/builtins/arm/sync-ops.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@
3434
.thumb; \
3535
.syntax unified; \
3636
DEFINE_COMPILERRT_THUMB_FUNCTION(__sync_fetch_and_##op) \
37-
push{r4, r5, r6, lr}; \
37+
push {r4, r5, r6, lr}; \
3838
dmb; \
3939
mov r12, r0; \
4040
LOCAL_LABEL(tryatomic_##op) : ldrexd r0, r1, [r12]; \

0 commit comments

Comments
 (0)