diff options
author | Luke T. Shumaker <lukeshu@lukeshu.com> | 2024-11-12 14:06:40 -0700 |
---|---|---|
committer | Luke T. Shumaker <lukeshu@lukeshu.com> | 2024-11-12 14:06:40 -0700 |
commit | f753128b22b61d4f85a74ba2694b8f9a576fc238 (patch) | |
tree | 487a6c4707809fe55af7a9789af2a1d22d289792 | |
parent | 5be7b1ebd1ab2bce1d53552b627fe55f425bdb38 (diff) |
fix typo in a comment
-rw-r--r-- | libcr/coroutine.c | 2 |
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), |