Commit 8b307f9c authored by Chris Zankel's avatar Chris Zankel

xtensa: Fixes due to bss boundary symbol name changes.

The bss start and end symbols have changed to __bss_start and __bss_stop.
Signed-off-by: default avatarChris Zankel <chris@zankel.net>
parent ed5010ea
...@@ -184,8 +184,8 @@ _startup: ...@@ -184,8 +184,8 @@ _startup:
* Now clear the BSS segment. * Now clear the BSS segment.
*/ */
movi a2, _bss_start # start of BSS movi a2, __bss_start # start of BSS
movi a3, _bss_end # end of BSS movi a3, __bss_stop # end of BSS
__loopt a2, a3, a4, 2 __loopt a2, a3, a4, 2
s32i a0, a2, 0 s32i a0, a2, 0
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment