From: cagney Date: Sun, 18 Aug 2002 17:59:56 +0000 (+0000) Subject: 2002-08-18 Andrew Cagney X-Git-Tag: pre-no-this~698 X-Git-Url: http://git.osdn.net/view?a=commitdiff_plain;h=838bb15a718c760bdfcb4f6aacd6c01d067d6829;p=pf3gnuchains%2Fpf3gnuchains4x.git 2002-08-18 Andrew Cagney * osabi.c (gdbarch_init_osabi): Don't complain about an unknown ABI. --- diff --git a/gdb/ChangeLog b/gdb/ChangeLog index dce4de0987..0c3f636e2e 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,3 +1,8 @@ +2002-08-18 Andrew Cagney + + * osabi.c (gdbarch_init_osabi): Don't complain about an unknown + ABI. + 2002-08-18 Mark Kettenis * i386b-nat.c [FETCH_INFERIOR_REGISTERS]: Remove dead code. diff --git a/gdb/osabi.c b/gdb/osabi.c index 580c7e1975..83eb767c0b 100644 --- a/gdb/osabi.c +++ b/gdb/osabi.c @@ -232,13 +232,8 @@ gdbarch_init_osabi (struct gdbarch_info info, struct gdbarch *gdbarch, if (osabi == GDB_OSABI_UNKNOWN) { - /* Don't complain about not knowing the OS ABI if we don't - have an inferior. */ - if (info.abfd) - fprintf_filtered - (gdb_stderr, "GDB doesn't recognize the OS ABI of the inferior. " - "Attempting to continue with the default %s settings", - bfd_printable_arch_mach (arch_info->arch, arch_info->mach)); + /* Don't complain about an unknown OSABI. Assume the user knows + what they are doing. */ return; }