diff options
author | Nobuyoshi Nakada <[email protected]> | 2020-07-05 17:12:20 +0900 |
---|---|---|
committer | Nobuyoshi Nakada <[email protected]> | 2020-07-05 17:12:20 +0900 |
commit | 04c704c5c967ea9bded6bf645439fe59c7d9f7d6 (patch) | |
tree | f761fc3dc04303e9dffe0c9ba6cd6aadbbfca8dd /coroutine/arm32/Context.S | |
parent | 95f5fd9a55cf9d885ec01d50de6eddada4379839 (diff) |
Removed trailing spaces [ci skip]
Diffstat (limited to 'coroutine/arm32/Context.S')
-rw-r--r-- | coroutine/arm32/Context.S | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/coroutine/arm32/Context.S b/coroutine/arm32/Context.S index b66db29622..08a0491de8 100644 --- a/coroutine/arm32/Context.S +++ b/coroutine/arm32/Context.S @@ -15,12 +15,12 @@ coroutine_transfer: # Save caller state (8 registers + return address) push {r4-r11,lr} - + # Save caller stack pointer str sp, [r0] - + # Restore callee stack pointer ldr sp, [r1] - + # Restore callee state (8 registers program counter) pop {r4-r11,pc} |