commit | 5261680312a0ba2c751d3fccef1781c3c124caa3 | [log] [tgz] |
---|---|---|
author | Wilfried Chauveau <wilfried.chauveau@arm.com> | Thu Jan 30 06:38:35 2025 +0000 |
committer | Benjamin Cabé <kartben@gmail.com> | Sat Feb 08 08:14:07 2025 +0100 |
tree | 4f94a89b17517fb65f0e651fb9ffb141b43db19a | |
parent | ecaa30329eaf34b9c4b41fc0c267f82761ac32dc [diff] |
arch: arm: cortex_m: use local label in ASM code Regular label are exported in the object file and cause gdb to consider them as function start. Local labels on the other hand are not exported. For example, using `disassemble z_arm_pendsv` after this change will disassemble the whole function rather than stop at the first branch. Signed-off-by: Wilfried Chauveau <wilfried.chauveau@arm.com>