summaryrefslogtreecommitdiffstats
path: root/cpukit/score/cpu/powerpc/rtems/score/powerpc.h
diff options
context:
space:
mode:
authorRalf Corsepius <ralf.corsepius@rtems.org>2005-02-13 10:41:01 +0000
committerRalf Corsepius <ralf.corsepius@rtems.org>2005-02-13 10:41:01 +0000
commitc1f47614bfd366130303d0ac8e8ba3802b672643 (patch)
tree601dff5e2fb9fa609198afbb683031af929286da /cpukit/score/cpu/powerpc/rtems/score/powerpc.h
parent2005-02-13 Ralf Corsepius <ralf.corsepius@rtems.org> (diff)
downloadrtems-c1f47614bfd366130303d0ac8e8ba3802b672643.tar.bz2
2005-02-13 Ralf Corsepius <ralf.corsepius@rtems.org>
* rtems/score/powerp.c: Remove PPC_HAS_EXCEPTION_PREFIX (Unused).
Diffstat (limited to 'cpukit/score/cpu/powerpc/rtems/score/powerpc.h')
-rw-r--r--cpukit/score/cpu/powerpc/rtems/score/powerpc.h12
1 files changed, 0 insertions, 12 deletions
diff --git a/cpukit/score/cpu/powerpc/rtems/score/powerpc.h b/cpukit/score/cpu/powerpc/rtems/score/powerpc.h
index 29e381a251..7ad3e7d9b6 100644
--- a/cpukit/score/cpu/powerpc/rtems/score/powerpc.h
+++ b/cpukit/score/cpu/powerpc/rtems/score/powerpc.h
@@ -69,7 +69,6 @@ extern "C" {
*
* + PPC_INTERRUPT_MAX - 16
* + PPC_CACHE_ALIGNMENT - 32
- * + PPC_HAS_EXCEPTION_PREFIX - 1
* + PPC_HAS_FPU - 1
* + PPC_HAS_DOUBLE - 1 if PPC_HAS_FPU,
* - 0 otherwise
@@ -98,8 +97,6 @@ extern "C" {
#define PPC_CACHE_ALIGNMENT 16
#define PPC_HAS_RFCI 1
-#define PPC_HAS_EXCEPTION_PREFIX 0
-
#elif defined(mpc555)
#define CPU_MODEL_NAME "PowerPC 555"
@@ -297,15 +294,6 @@ extern "C" {
#endif
/*
- * Unless otherwise specified, assume the model has an IP/EP bit to
- * set the exception address prefix.
- */
-
-#ifndef PPC_HAS_EXCEPTION_PREFIX
-#define PPC_HAS_EXCEPTION_PREFIX 1
-#endif
-
-/*
* Unless specified above, assume PPC_HAS_FPU to be a synonym for _SOFT_FLOAT.
* FIXME: Should we tie PPC_HAS_FPU to _SOFT_FLOAT, directly
* and disallow explicitly setting PPC_HAS_FPU?