summaryrefslogtreecommitdiff
path: root/nuttx/arch/arm/src/armv7-m/up_exception.S
diff options
context:
space:
mode:
Diffstat (limited to 'nuttx/arch/arm/src/armv7-m/up_exception.S')
-rw-r--r--nuttx/arch/arm/src/armv7-m/up_exception.S7
1 files changed, 4 insertions, 3 deletions
diff --git a/nuttx/arch/arm/src/armv7-m/up_exception.S b/nuttx/arch/arm/src/armv7-m/up_exception.S
index df7a7ad29..ec2ed4dd7 100644
--- a/nuttx/arch/arm/src/armv7-m/up_exception.S
+++ b/nuttx/arch/arm/src/armv7-m/up_exception.S
@@ -244,7 +244,7 @@ exception_common:
.size exception_common, .-exception_common
/************************************************************************************
- * Name: up_interruptstack/g_intstackbase
+ * Name: g_intstackalloc/g_intstackbase
*
* Description:
* Shouldn't happen
@@ -253,12 +253,13 @@ exception_common:
#if CONFIG_ARCH_INTERRUPTSTACK > 3
.bss
+ .global g_intstackalloc
.global g_intstackbase
.align 4
-up_interruptstack:
+g_intstackalloc:
.skip (CONFIG_ARCH_INTERRUPTSTACK & ~3)
g_intstackbase:
- .size up_interruptstack, .-up_interruptstack
+ .size g_intstackalloc, .-g_intstackalloc
#endif
.end