summaryrefslogtreecommitdiffstats
path: root/cpukit/score/cpu/arm/rtems
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@oarcorp.com>2014-10-07 17:40:49 -0500
committerJoel Sherrill <joel.sherrill@oarcorp.com>2014-10-09 10:11:57 -0500
commitbf19dbc373c77890588db1605689a8ca50131fc2 (patch)
tree97fcddd4f3636fd1719e31691e7281627fb165d1 /cpukit/score/cpu/arm/rtems
parentsparc64/shared/startup/bspstart.c: Add include of <bsp/bootcard.h> to fix war... (diff)
downloadrtems-bf19dbc373c77890588db1605689a8ca50131fc2.tar.bz2
arm/rtems/score/cpu.h: _ARMV7M_Start_multitasking needed RTEMS_COMPILER_NO_RETURN_ATTRIBUTE
Diffstat (limited to 'cpukit/score/cpu/arm/rtems')
-rw-r--r--cpukit/score/cpu/arm/rtems/score/cpu.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/cpukit/score/cpu/arm/rtems/score/cpu.h b/cpukit/score/cpu/arm/rtems/score/cpu.h
index a032d4aff9..9aef8df15d 100644
--- a/cpukit/score/cpu/arm/rtems/score/cpu.h
+++ b/cpukit/score/cpu/arm/rtems/score/cpu.h
@@ -488,7 +488,8 @@ void _CPU_Context_restore( Context_Control *new_context )
RTEMS_COMPILER_NO_RETURN_ATTRIBUTE;
#if defined(ARM_MULTILIB_ARCH_V7M)
- void _ARMV7M_Start_multitasking( Context_Control *heir );
+ void _ARMV7M_Start_multitasking( Context_Control *heir )
+ RTEMS_COMPILER_NO_RETURN_ATTRIBUTE;
#define _CPU_Start_multitasking _ARMV7M_Start_multitasking
#endif