From 71d2cf23595e6174d50950d60ff28e028a183185 Mon Sep 17 00:00:00 2001 From: Phil Edworthy Date: Thu, 1 Jun 2017 07:33:29 +0100 Subject: 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 --- arch/arm/cpu/armv7m/start.S | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/arch/arm/cpu/armv7m/start.S b/arch/arm/cpu/armv7m/start.S index 49f27201cf..890c773963 100644 --- a/arch/arm/cpu/armv7m/start.S +++ b/arch/arm/cpu/armv7m/start.S @@ -5,10 +5,12 @@ * SPDX-License-Identifier: GPL-2.0+ */ +#include + .globl reset .type reset, %function reset: - b _main + W(b) _main .globl c_runtime_cpu_setup c_runtime_cpu_setup: -- cgit v1.2.3