diff options
author | Mark Kettenis <kettenis@gnu.org> | 2000-06-05 18:59:40 +0000 |
---|---|---|
committer | Mark Kettenis <kettenis@gnu.org> | 2000-06-05 18:59:40 +0000 |
commit | b3c229124c4450e4fc9ac43b0de04f40e3eb5219 (patch) | |
tree | 2bcd37ae9fe16ab166279388575321aa7aff0c61 /gdb/i386bsd-nat.c | |
parent | f689ae325f6660586a24ff4697ca97e589894f51 (diff) | |
download | gdb-b3c229124c4450e4fc9ac43b0de04f40e3eb5219.tar.gz |
* acconfig.h, configure.in, i386bsd.c (HAVE_STRUCT_REG_R_FS):
Renamed from HAVE_R_FS.
(HAVE_STRUCT_REG_GS): Renamed from HAVE_R_GS.
* configure, config.in: Regenerated.
Diffstat (limited to 'gdb/i386bsd-nat.c')
-rw-r--r-- | gdb/i386bsd-nat.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gdb/i386bsd-nat.c b/gdb/i386bsd-nat.c index aadf5864c92..f1182ea4e80 100644 --- a/gdb/i386bsd-nat.c +++ b/gdb/i386bsd-nat.c @@ -78,12 +78,12 @@ static int reg_offset[] = REG_OFFSET (r_ss), REG_OFFSET (r_ds), REG_OFFSET (r_es), -#ifdef HAVE_R_FS +#ifdef HAVE_STRUCT_REG_R_FS REG_OFFSET (r_fs), #else -1, #endif -#ifdef HAVE_R_GS +#ifdef HAVE_STRUCT_REG_R_GS REG_OFFSET (r_gs) #else -1 |