aboutsummaryrefslogtreecommitdiff
path: root/gdb/gdbserver/win32-i386-low.c
diff options
context:
space:
mode:
authorPierre Muller <muller@sourceware.org>2010-04-20 09:58:42 +0000
committerPierre Muller <muller@sourceware.org>2010-04-20 09:58:42 +0000
commit1c07cc19039fc86c4f857fae766f02f5452a9a22 (patch)
treecd12214319497c4e8d58cf19e92ee066ecc01657 /gdb/gdbserver/win32-i386-low.c
parent643be349a928c3b8df3ff338cff47cce8bed300b (diff)
downloadgdb-1c07cc19039fc86c4f857fae766f02f5452a9a22.zip
gdb-1c07cc19039fc86c4f857fae766f02f5452a9a22.tar.gz
gdb-1c07cc19039fc86c4f857fae766f02f5452a9a22.tar.bz2
* win32-i386-low.c: Use __x86_64__ macro instead of __x86_64 to
be consistent with other sources of this directory. (init_registers_amd64): Correct name of source file of this function in the comment.
Diffstat (limited to 'gdb/gdbserver/win32-i386-low.c')
-rw-r--r--gdb/gdbserver/win32-i386-low.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/gdb/gdbserver/win32-i386-low.c b/gdb/gdbserver/win32-i386-low.c
index 6f5ab09..2e67615 100644
--- a/gdb/gdbserver/win32-i386-low.c
+++ b/gdb/gdbserver/win32-i386-low.c
@@ -28,8 +28,8 @@
#define FLAG_TRACE_BIT 0x100
-#ifdef __x86_64
-/* Defined in auto-generated file reg-i386.c. */
+#ifdef __x86_64__
+/* Defined in auto-generated file reg-amd64.c. */
void init_registers_amd64 (void);
#else
/* Defined in auto-generated file reg-i386.c. */
@@ -223,7 +223,7 @@ i386_single_step (win32_thread_info *th)
th->context.EFlags |= FLAG_TRACE_BIT;
}
-#ifndef __x86_64
+#ifndef __x86_64__
/* An array of offset mappings into a Win32 Context structure.
This is a one-to-one mapping which is indexed by gdb's register
@@ -280,7 +280,7 @@ static const int mappings[] = {
};
#undef context_offset
-#else /* __x86_64 */
+#else /* __x86_64__ */
#define context_offset(x) (offsetof (CONTEXT, x))
static const int mappings[] =
@@ -347,7 +347,7 @@ static const int mappings[] =
};
#undef context_offset
-#endif /* __x86_64 */
+#endif /* __x86_64__ */
/* Fetch register from gdbserver regcache data. */
static void
@@ -386,7 +386,7 @@ static const unsigned char i386_win32_breakpoint = 0xcc;
static void
init_windows_x86 (void)
{
-#ifdef __x86_64
+#ifdef __x86_64__
init_registers_amd64 ();
#else
init_registers_i386 ();