* arm/linux-crt0.c: Use ldr instead of adr to get address of

_start_thumb.
This commit is contained in:
Corinna Vinschen 2012-01-17 10:03:40 +00:00
parent d409f31ff3
commit c3a549f687
2 changed files with 8 additions and 1 deletions

View File

@ -1,3 +1,8 @@
2012-01-17 Bin Cheng <bin.cheng@arm.com>
* arm/linux-crt0.c: Use ldr instead of adr to get address of
_start_thumb.
2011-12-18 Mike Frysinger <vapier@gentoo.org>
* bfin/clear_cache_range.c: New file.

View File

@ -18,8 +18,10 @@ asm("\n"
".global _start\n"
".type _start, %function\n"
"_start:\n"
"\tadr r0, _start_thumb+1\n"
"\tldr r0, .LC0\n"
"\tbx r0\n"
".LC0:\n"
"\t.word _start_thumb\n"
".size _start, .-_start\n");
__attribute__((naked, used))