summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--c/src/librdbg/ChangeLog6
-rw-r--r--c/src/librdbg/src/powerpc/rdbg_cpu_asm.S5
-rw-r--r--c/src/librdbg/src/powerpc/rdbg_f.c3
3 files changed, 9 insertions, 5 deletions
diff --git a/c/src/librdbg/ChangeLog b/c/src/librdbg/ChangeLog
index a2f5120737..ef2b5efe0f 100644
--- a/c/src/librdbg/ChangeLog
+++ b/c/src/librdbg/ChangeLog
@@ -1,3 +1,9 @@
+2002-04-18 Ralf Corsepius <corsepiu@faw.uni-ulm.de>
+
+ * src/powerpc/rdbg_cpu_asm.S: Reflect changes to
+ <rtems/score/cpu.h>.
+ * src/powerpc/rdbg_f.c: Ditto.
+
2002-03-27 Ralf Corsepius <corsepiu@faw.uni-ulm.de>
* configure.ac:
diff --git a/c/src/librdbg/src/powerpc/rdbg_cpu_asm.S b/c/src/librdbg/src/powerpc/rdbg_cpu_asm.S
index 657a279830..77b3316afc 100644
--- a/c/src/librdbg/src/powerpc/rdbg_cpu_asm.S
+++ b/c/src/librdbg/src/powerpc/rdbg_cpu_asm.S
@@ -7,10 +7,9 @@
*
*/
-#include <libcpu/cpu.h>
-#include <libcpu/io.h>
-#include <rtems/score/targopts.h>
#include <asm.h>
+#include <rtems/score/cpu.h>
+#include <libcpu/io.h>
BEGIN_CODE
diff --git a/c/src/librdbg/src/powerpc/rdbg_f.c b/c/src/librdbg/src/powerpc/rdbg_f.c
index 3cdfc26579..f0131e91d8 100644
--- a/c/src/librdbg/src/powerpc/rdbg_f.c
+++ b/c/src/librdbg/src/powerpc/rdbg_f.c
@@ -10,14 +10,13 @@
**************************************************************************
*/
+#include <rtems/score/cpu.h>
#include <assert.h>
#include <errno.h>
#include <rdbg/reg.h>
#include <rdbg/remdeb.h>
#include <rdbg/rdbg.h>
-#include <rtems/score/cpu.h>
#include <rtems/score/thread.h>
-#include <libcpu/cpu.h>
void
CtxToRegs (const CPU_Exception_frame * ctx, xdr_regs * regs)