Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(393)

Unified Diff: gdb/osabi.c

Issue 11969036: Merge GDB 7.5.1 (Closed) Base URL: http://git.chromium.org/native_client/nacl-gdb.git@master
Patch Set: Created 7 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « gdb/opencl-lang.c ('k') | gdb/osdata.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: gdb/osabi.c
diff --git a/gdb/osabi.c b/gdb/osabi.c
index 671773763993fc89bd2d07d497d4ad50656be593..909138ebbf05ea04b6690646e1d1131a1d4ca299 100644
--- a/gdb/osabi.c
+++ b/gdb/osabi.c
@@ -73,6 +73,7 @@ static const char * const gdb_osabi_names[] =
"Darwin",
"Symbian",
"NaCl",
+ "OpenVMS",
"<invalid>"
};
@@ -550,6 +551,10 @@ generic_elf_osabi_sniffer (bfd *abfd)
generic_elf_osabi_sniff_abi_tag_sections,
&osabi);
break;
+
+ case ELFOSABI_OPENVMS:
+ osabi = GDB_OSABI_OPENVMS;
+ break;
}
if (osabi == GDB_OSABI_UNKNOWN)
« no previous file with comments | « gdb/opencl-lang.c ('k') | gdb/osdata.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698