summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLuke T. Shumaker <lukeshu@lukeshu.com>2024-11-12 14:06:40 -0700
committerLuke T. Shumaker <lukeshu@lukeshu.com>2024-11-12 14:06:40 -0700
commitf753128b22b61d4f85a74ba2694b8f9a576fc238 (patch)
tree487a6c4707809fe55af7a9789af2a1d22d289792
parent5be7b1ebd1ab2bce1d53552b627fe55f425bdb38 (diff)
fix typo in a comment
-rw-r--r--libcr/coroutine.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libcr/coroutine.c b/libcr/coroutine.c
index 553acc8..49146f1 100644
--- a/libcr/coroutine.c
+++ b/libcr/coroutine.c
@@ -210,7 +210,7 @@
"mov sp, %1\n\t" /* [sp = stack] */
"mov r0, %3\n\t" /* [arg0 = args] */
"blx %2\n\t" /* [fn()] */
- "ldr r0, %0\n\t" /* [sp = staved_sp */
+ "ldr r0, %0\n\t" /* [sp = saved_sp */
"mov sp, r0" /* ] */
:
: /* %0 */"m"(saved_sp),