Skip to content
This repository was archived by the owner on Sep 29, 2025. It is now read-only.

Commit 2dc1ed2

Browse files
authored
Merge pull request #1706 from reicast/skmp/fix-armhf
Fix armhf build
2 parents 4e366ff + d9acc9c commit 2dc1ed2

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

libswirl/linux/common.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -107,8 +107,8 @@ void re_raise_fault()
107107
"call generic_fault_handler\n"
108108
"movb $0, (%rax)"
109109
#elif HOST_CPU == CPU_ARM
110-
"sub sp, 8192\n"
111-
"and sp, -32\n"
110+
"sub sp, #8192\n"
111+
"and sp, #-32\n"
112112
"bl generic_fault_handler\n"
113113
"ldr r1, [r0]"
114114
#elif HOST_CPU == CPU_ARM64

0 commit comments

Comments
 (0)