diff options
author | Andrew Cagney <cagney@redhat.com> | 2002-08-18 17:59:57 +0000 |
---|---|---|
committer | Andrew Cagney <cagney@redhat.com> | 2002-08-18 17:59:57 +0000 |
commit | 9d768be39817076465efe3decfb8c05ae297791a (patch) | |
tree | 68375394557e13d2d62129670055a1f7e0c4fe62 /gdb/osabi.c | |
parent | 96d6ecb52ef35a9de0836767f3430ff3ebad55d3 (diff) | |
download | gdb-9d768be39817076465efe3decfb8c05ae297791a.tar.gz |
2002-08-18 Andrew Cagney <ac131313@redhat.com>
* osabi.c (gdbarch_init_osabi): Don't complain about an unknown
ABI.
Diffstat (limited to 'gdb/osabi.c')
-rw-r--r-- | gdb/osabi.c | 9 |
1 files changed, 2 insertions, 7 deletions
diff --git a/gdb/osabi.c b/gdb/osabi.c index 580c7e19756..83eb767c0b7 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; } |