* x86-64-tdep.h (sys/reg.h, x86_64_regmap): Moved to x86-64-linux-nat.c
authorMichal Ludvig <mludvig@suse.cz>
Sun, 10 Mar 2002 18:16:26 +0000 (18:16 +0000)
committerMichal Ludvig <mludvig@suse.cz>
Sun, 10 Mar 2002 18:16:26 +0000 (18:16 +0000)
        * x86-64-linux-nat.c (sys/reg.h, x86_64_regmap): Moved here
        from x86-64-tdep.h

gdb/ChangeLog
gdb/x86-64-linux-nat.c
gdb/x86-64-tdep.h

index f398fc8..14333ce 100644 (file)
@@ -1,3 +1,9 @@
+2002-03-10  Michal Ludvig  <mludvig@suse.cz>
+
+       * x86-64-tdep.h (sys/reg.h, x86_64_regmap): Moved to x86-64-linux-nat.c
+       * x86-64-linux-nat.c (sys/reg.h, x86_64_regmap): Moved here 
+       from x86-64-tdep.h
+
 2002-03-10  Daniel Jacobowitz  <drow@mvista.com>
            Don Howard <dhoward@redhat.com>
 
index 3fb24dd..aafd2be 100644 (file)
 #include <sys/debugreg.h>
 #include <sys/syscall.h>
 #include <sys/procfs.h>
+#include <sys/reg.h>
+
+/* Mapping between the general-purpose registers in `struct user'
+   format and GDB's register array layout.  */
+
+static int x86_64_regmap[] = {
+  RAX, RDX, RCX, RBX,
+  RSI, RDI, RBP, RSP,
+  R8, R9, R10, R11,
+  R12, R13, R14, R15,
+  RIP, EFLAGS
+};
 
 static unsigned long
 x86_64_linux_dr_get (int regnum)
index d04da8b..83828cf 100644 (file)
 #define X86_64_TDEP_H
 
 #include "i386-tdep.h"
-#include <sys/reg.h>
-
-/* Mapping between the general-purpose registers in `struct user'
-   format and GDB's register array layout.  */
-
-static int x86_64_regmap[] = {
-  RAX, RDX, RCX, RBX,
-  RSI, RDI, RBP, RSP,
-  R8, R9, R10, R11,
-  R12, R13, R14, R15,
-  RIP, EFLAGS
-};
 
 /* Number of all registers */
 #define X86_64_NUM_REGS (51)