From 0c9b9ced315210159974dcba7d0dc40c18c46ad2 Mon Sep 17 00:00:00 2001 From: Grissiom Date: Sun, 17 Nov 2013 12:19:04 +0800 Subject: [PATCH] cortex-r4: use byte to allocate the stack Unit of "byte" is more intuitive than "long". --- libcpu/arm/cortex-r4/start_gcc.S | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libcpu/arm/cortex-r4/start_gcc.S b/libcpu/arm/cortex-r4/start_gcc.S index 3d679d0a22..1ed1e396af 100644 --- a/libcpu/arm/cortex-r4/start_gcc.S +++ b/libcpu/arm/cortex-r4/start_gcc.S @@ -30,7 +30,7 @@ stack_start: .rept (UND_Stack_Size + SVC_Stack_Size + ABT_Stack_Size + FIQ_Stack_Size + IRQ_Stack_Size) -.long 0 +.byte 0 .endr stack_top: -- GitLab