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

Unified Diff: include/coff/arm.h

Issue 124383005: GDB 7.6.50 (Closed) Base URL: http://git.chromium.org/native_client/nacl-gdb.git@upstream
Patch Set: Created 6 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 | « include/coff/ChangeLog-9103 ('k') | include/coff/internal.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: include/coff/arm.h
diff --git a/include/coff/arm.h b/include/coff/arm.h
index 9c3400539790aa4c289426ed0cc25409a37be257..4beb1212247a18889f4e50ec057b643c04a91eec 100644
--- a/include/coff/arm.h
+++ b/include/coff/arm.h
@@ -1,5 +1,6 @@
/* ARM COFF support for BFD.
- Copyright 1998, 1999, 2000, 2002, 2003, 2010 Free Software Foundation, Inc.
+ Copyright 1998, 1999, 2000, 2002, 2003, 2010, 2013
+ Free Software Foundation, Inc.
This file is part of BFD, the Binary File Descriptor library.
@@ -81,9 +82,10 @@
#define ARMPEMAGIC 0x1c0
#define THUMBPEMAGIC 0x1c2
+#define ARMV7PEMAGIC 0x1c4
#undef ARMBADMAG
-#define ARMBADMAG(x) (((x).f_magic != ARMMAGIC) && ((x).f_magic != ARMPEMAGIC) && ((x).f_magic != THUMBPEMAGIC))
+#define ARMBADMAG(x) (((x).f_magic != ARMMAGIC) && ((x).f_magic != ARMPEMAGIC) && ((x).f_magic != THUMBPEMAGIC) && ((x).f_magic != ARMV7PEMAGIC))
#define OMAGIC 0404 /* object files, eg as output */
#define ZMAGIC 0413 /* demand load format, eg normal ld output */
« no previous file with comments | « include/coff/ChangeLog-9103 ('k') | include/coff/internal.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698