mirror of
https://git.codelinaro.org/clo/qsdk/oss/boot/u-boot-2016.git
synced 2026-02-25 05:24:12 +01:00
armv7m: Fix larger builds
The branch instruction only has an 11-bit relative target address, which is sometimes not enough. Signed-off-by: Phil Edworthy <phil.edworthy@renesas.com>
This commit is contained in:
parent
111a6af97a
commit
71d2cf2359
1 changed files with 3 additions and 1 deletions
|
|
@ -5,10 +5,12 @@
|
|||
* SPDX-License-Identifier: GPL-2.0+
|
||||
*/
|
||||
|
||||
#include <asm/assembler.h>
|
||||
|
||||
.globl reset
|
||||
.type reset, %function
|
||||
reset:
|
||||
b _main
|
||||
W(b) _main
|
||||
|
||||
.globl c_runtime_cpu_setup
|
||||
c_runtime_cpu_setup:
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue