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

Unified Diff: bfd/cpu-hppa.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 | « bfd/cpu-h8500.c ('k') | bfd/cpu-i370.c » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: bfd/cpu-hppa.c
diff --git a/bfd/cpu-hppa.c b/bfd/cpu-hppa.c
index 034e32143365ec6748b3cd32e25167514489baaa..885a11a8eae6df243704eb4a548bca8fbb34196c 100644
--- a/bfd/cpu-hppa.c
+++ b/bfd/cpu-hppa.c
@@ -35,7 +35,8 @@ static const bfd_arch_info_type bfd_hppa10_arch =
3,
TRUE, /* Unless we use 1.1 specific features */
bfd_default_compatible,
- bfd_default_scan ,
+ bfd_default_scan,
+ bfd_arch_default_fill,
0,
};
@@ -52,7 +53,8 @@ static const bfd_arch_info_type bfd_hppa20_arch =
3,
FALSE, /* Unless we use 1.1 specific features */
bfd_default_compatible,
- bfd_default_scan ,
+ bfd_default_scan,
+ bfd_arch_default_fill,
&bfd_hppa10_arch,
};
@@ -69,7 +71,8 @@ static const bfd_arch_info_type bfd_hppa20w_arch =
3,
FALSE, /* Unless we use 1.1 specific features */
bfd_default_compatible,
- bfd_default_scan ,
+ bfd_default_scan,
+ bfd_arch_default_fill,
&bfd_hppa20_arch,
};
@@ -85,6 +88,7 @@ const bfd_arch_info_type bfd_hppa_arch =
3,
FALSE, /* 1.1 specific features used */
bfd_default_compatible,
- bfd_default_scan ,
+ bfd_default_scan,
+ bfd_arch_default_fill,
&bfd_hppa20w_arch,
};
« no previous file with comments | « bfd/cpu-h8500.c ('k') | bfd/cpu-i370.c » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698