diff options
author | 2020-05-07 20:06:54 +0200 | |
---|---|---|
committer | 2020-05-07 20:07:11 +0200 | |
commit | af3143c4d42f40ccb84b8fa9e76f0fbd6fa458c6 (patch) | |
tree | 91bd474363bc3df968e6591b9f51db4a8617cf19 /asm.s | |
parent | 8aaeada180a9e414c254845067e4130457bf9b9d (diff) | |
download | cortex-m-af3143c4d42f40ccb84b8fa9e76f0fbd6fa458c6.tar.gz cortex-m-af3143c4d42f40ccb84b8fa9e76f0fbd6fa458c6.tar.zst cortex-m-af3143c4d42f40ccb84b8fa9e76f0fbd6fa458c6.zip |
Remove cfi directives from __msp_w and __psp_w
Diffstat (limited to 'asm.s')
-rw-r--r-- | asm.s | 4 |
1 files changed, 0 insertions, 4 deletions
@@ -108,11 +108,9 @@ __msp_r: .section .text.__msp_w .global __msp_w .thumb_func - .cfi_startproc __msp_w: msr MSP, r0 bx lr - .cfi_endproc .size __msp_w, . - __msp_w .section .text.__nop @@ -147,11 +145,9 @@ __psp_r: .section .text.__psp_w .global __psp_w .thumb_func - .cfi_startproc __psp_w: msr PSP, r0 bx lr - .cfi_endproc .size __psp_w, . - __psp_w .section .text.__sev |