From bcdfc9f1acf4860a6d32c7ec8281d0a512799748 Mon Sep 17 00:00:00 2001 From: Wayne Ren Date: Fri, 22 Mar 2019 14:58:44 +0800 Subject: [PATCH] arch: arc: fix the unaligned declaration of saved_value the original declaration is not aligned to 4 bytes. Signed-off-by: Wayne Ren --- arch/arc/core/fault_s.S | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/arch/arc/core/fault_s.S b/arch/arc/core/fault_s.S index 2dfa6a28f15..04f51fd0c03 100644 --- a/arch/arc/core/fault_s.S +++ b/arch/arc/core/fault_s.S @@ -40,8 +40,8 @@ GTEXT(_irq_do_offload); GDATA(exc_nest_count) - .balign 4 SECTION_VAR(BSS, saved_value) + .balign 4 .word 0 /* the necessary stack size for exception handling */