Skip to content
Snippets Groups Projects
Commit 867da0d4 authored by Yoshihiro Shimoda's avatar Yoshihiro Shimoda Committed by Nobuhiro Iwamatsu
Browse files

sh: fix trigger_address_error()


The function should set BL bit, but it should not clear other flags.
So, the patch uses set_bl_bit() instead of a local asm code.

Signed-off-by: default avatarYoshihiro Shimoda <yoshihiro.shimoda.uh@renesas.com>
Signed-off-by: default avatarNobuhiro Iwamatsu <iwamatsu@nigauri.org>
parent b8715d8d
No related branches found
No related tags found
No related merge requests found
...@@ -274,8 +274,8 @@ void enable_hlt(void); ...@@ -274,8 +274,8 @@ void enable_hlt(void);
static inline void trigger_address_error(void) static inline void trigger_address_error(void)
{ {
set_bl_bit();
__asm__ __volatile__ ( __asm__ __volatile__ (
"ldc %0, sr\n\t"
"mov.l @%1, %0" "mov.l @%1, %0"
: :
: "r" (0x10000000), "r" (0x80000001) : "r" (0x10000000), "r" (0x80000001)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment