summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@OARcorp.com>1996-09-18 20:47:39 +0000
committerJoel Sherrill <joel.sherrill@OARcorp.com>1996-09-18 20:47:39 +0000
commit20697735717407d0d2309e66ad47007b078ae7d3 (patch)
treeca396c6354a943bd360a8dc5490bbdad80c2e3ce
parentcorrected white space problems (diff)
downloadrtems-20697735717407d0d2309e66ad47007b078ae7d3.tar.bz2
use address object to avoid direct pointer arithmetic
-rw-r--r--c/src/exec/score/cpu/hppa1.1/cpu.h2
-rw-r--r--c/src/exec/score/cpu/mips64orion/cpu.h2
-rw-r--r--c/src/exec/score/cpu/no_cpu/cpu.h2
-rw-r--r--c/src/exec/score/cpu/powerpc/cpu.h2
-rw-r--r--c/src/exec/score/cpu/sparc/cpu.h2
-rw-r--r--c/src/exec/score/cpu/unix/cpu.h2
6 files changed, 6 insertions, 6 deletions
diff --git a/c/src/exec/score/cpu/hppa1.1/cpu.h b/c/src/exec/score/cpu/hppa1.1/cpu.h
index 63d8b3019a..2d35735ad4 100644
--- a/c/src/exec/score/cpu/hppa1.1/cpu.h
+++ b/c/src/exec/score/cpu/hppa1.1/cpu.h
@@ -419,7 +419,7 @@ unsigned32 _CPU_ISR_Get_level( void );
} while (0)
#define _CPU_Context_Fp_start( _base, _offset ) \
- ( (void *) (_base) + (_offset) )
+ ( (void *) _Addresses_Add_offset( (_base), (_offset) ) )
#define _CPU_Context_Initialize_fp( _destination ) \
do { \
diff --git a/c/src/exec/score/cpu/mips64orion/cpu.h b/c/src/exec/score/cpu/mips64orion/cpu.h
index fff4821ff8..97bed5ba40 100644
--- a/c/src/exec/score/cpu/mips64orion/cpu.h
+++ b/c/src/exec/score/cpu/mips64orion/cpu.h
@@ -656,7 +656,7 @@ unsigned32 _CPU_ISR_Get_level( void );
*/
#define _CPU_Context_Fp_start( _base, _offset ) \
- ( (char *) (_base) + (_offset) )
+ ( (void *) _Addresses_Add_offset( (_base), (_offset) ) )
/*
* This routine initializes the FP context area passed to it to.
diff --git a/c/src/exec/score/cpu/no_cpu/cpu.h b/c/src/exec/score/cpu/no_cpu/cpu.h
index 81e4f2e626..78f44e2c45 100644
--- a/c/src/exec/score/cpu/no_cpu/cpu.h
+++ b/c/src/exec/score/cpu/no_cpu/cpu.h
@@ -572,7 +572,7 @@ SCORE_EXTERN void (*_CPU_Thread_dispatch_pointer)();
*/
#define _CPU_Context_Fp_start( _base, _offset ) \
- ( (void *) (_base) + (_offset) )
+ ( (void *) _Addresses_Add_offset( (_base), (_offset) ) )
/*
* This routine initializes the FP context area passed to it to.
diff --git a/c/src/exec/score/cpu/powerpc/cpu.h b/c/src/exec/score/cpu/powerpc/cpu.h
index 370e980695..bb7b1fea49 100644
--- a/c/src/exec/score/cpu/powerpc/cpu.h
+++ b/c/src/exec/score/cpu/powerpc/cpu.h
@@ -767,7 +767,7 @@ unsigned32 _CPU_ISR_Get_level( void );
*/
#define _CPU_Context_Fp_start( _base, _offset ) \
- ( (void *) (_base) + (_offset) )
+ ( (void *) _Addresses_Add_offset( (_base), (_offset) ) )
/*
* This routine initializes the FP context area passed to it to.
diff --git a/c/src/exec/score/cpu/sparc/cpu.h b/c/src/exec/score/cpu/sparc/cpu.h
index b0d1255744..0571ba5bd0 100644
--- a/c/src/exec/score/cpu/sparc/cpu.h
+++ b/c/src/exec/score/cpu/sparc/cpu.h
@@ -789,7 +789,7 @@ void _CPU_Context_Initialize(
*/
#define _CPU_Context_Fp_start( _base, _offset ) \
- ( (void *) (_base) + (_offset) )
+ ( (void *) _Addresses_Add_offset( (_base), (_offset) ) )
/*
* This routine initializes the FP context area passed to it to.
diff --git a/c/src/exec/score/cpu/unix/cpu.h b/c/src/exec/score/cpu/unix/cpu.h
index 3c4899e983..9e616620ac 100644
--- a/c/src/exec/score/cpu/unix/cpu.h
+++ b/c/src/exec/score/cpu/unix/cpu.h
@@ -706,7 +706,7 @@ unsigned32 _CPU_ISR_Get_level( void );
*/
#define _CPU_Context_Fp_start( _base, _offset ) \
- ( (void *) (_base) + (_offset) )
+ ( (void *) _Addresses_Add_offset( (_base), (_offset) ) )
/*
* This routine initializes the FP context area passed to it to.