diff options
author | TsiChung Liew | 2008-06-18 19:12:13 -0500 |
---|---|---|
committer | John Rigby | 2008-07-11 10:45:57 -0600 |
commit | 3b1e8ac9b43f89cc9291a6a86e6b33ef55801515 (patch) | |
tree | 1b0e316a4d8df99d5f092edb1a660ed2096d8498 /cpu | |
parent | 8371dc2066136be21e10b7b9293e469297d77298 (diff) |
ColdFire: Change invalid JMP to BRA caught by new v4e toolchain
Signed-off-by: Kurt Mahan <kmahan@freescale.com>
Diffstat (limited to 'cpu')
-rw-r--r-- | cpu/mcf5445x/start.S | 2 | ||||
-rw-r--r-- | cpu/mcf547x_8x/start.S | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/cpu/mcf5445x/start.S b/cpu/mcf5445x/start.S index 3241b278e1c..89ec7bcc914 100644 --- a/cpu/mcf5445x/start.S +++ b/cpu/mcf5445x/start.S @@ -253,7 +253,7 @@ clear_bss: /* exception code */ .globl _fault _fault: - jmp _fault + bra _fault .globl _exc_handler _exc_handler: diff --git a/cpu/mcf547x_8x/start.S b/cpu/mcf547x_8x/start.S index 8b8708d030b..87355f95813 100644 --- a/cpu/mcf547x_8x/start.S +++ b/cpu/mcf547x_8x/start.S @@ -259,7 +259,7 @@ clear_bss: /* exception code */ .globl _fault _fault: - jmp _fault + bra _fault .globl _exc_handler _exc_handler: |