summaryrefslogtreecommitdiffstats
path: root/cpukit/score/cpu/or1k
diff options
context:
space:
mode:
authorSebastian Huber <sebastian.huber@embedded-brains.de>2016-02-03 11:05:07 +0100
committerSebastian Huber <sebastian.huber@embedded-brains.de>2016-02-17 09:15:00 +0100
commitd4e81e3c80259467adbd2472fce94aebec3935b5 (patch)
treeacd6d24cdfb90162206e255e78ce58dae1ed5a08 /cpukit/score/cpu/or1k
parentarm/.../lpc1768_embed.cfg: Disable per function sections (diff)
downloadrtems-d4e81e3c80259467adbd2472fce94aebec3935b5.tar.bz2
or1k: Delete superfluous _CPU_Null_fp_context
Update #2559.
Diffstat (limited to 'cpukit/score/cpu/or1k')
-rw-r--r--cpukit/score/cpu/or1k/rtems/score/cpu.h18
1 files changed, 1 insertions, 17 deletions
diff --git a/cpukit/score/cpu/or1k/rtems/score/cpu.h b/cpukit/score/cpu/or1k/rtems/score/cpu.h
index 2405844d92..736434336e 100644
--- a/cpukit/score/cpu/or1k/rtems/score/cpu.h
+++ b/cpukit/score/cpu/or1k/rtems/score/cpu.h
@@ -391,7 +391,6 @@ typedef Context_Control CPU_Interrupt_frame;
*/
#define CPU_CONTEXT_FP_SIZE 0
-SCORE_EXTERN Context_Control_fp _CPU_Null_fp_context;
/*
* Amount of extra stack (above minimum stack size) required by
@@ -653,23 +652,8 @@ void _CPU_Context_Initialize(
#define _CPU_Context_Fp_start( _base, _offset ) \
( (void *) _Addresses_Add_offset( (_base), (_offset) ) )
-/*
- * This routine initializes the FP context area passed to it to.
- * There are a few standard ways in which to initialize the
- * floating point context. The code included for this macro assumes
- * that this is a CPU in which a "initial" FP context was saved into
- * _CPU_Null_fp_context and it simply copies it to the destination
- * context passed to it.
- *
- * Other models include (1) not doing anything, and (2) putting
- * a "null FP status word" in the correct place in the FP context.
- *
- */
-
#define _CPU_Context_Initialize_fp( _destination ) \
- { \
- *(*(_destination)) = _CPU_Null_fp_context; \
- }
+ memset( *( _destination ), 0, CPU_CONTEXT_FP_SIZE );
/* end of Context handler macros */