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

Unified Diff: bfd/ticoff.h

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/targets.c ('k') | bfd/trad-core.c » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: bfd/ticoff.h
diff --git a/bfd/ticoff.h b/bfd/ticoff.h
index e2c9316733537f0181d9a131030d32924117d380..d34ca212b049fb651435c1fc4127bf4c34c8ada7 100644
--- a/bfd/ticoff.h
+++ b/bfd/ticoff.h
@@ -21,9 +21,8 @@
#define F_LSYMS F_LSYMS_TICOFF
static bfd_boolean
-ticoff0_bad_format_hook (abfd, filehdr)
- bfd *abfd;
- PTR filehdr;
+ticoff0_bad_format_hook (bfd * abfd,
+ void * filehdr)
{
struct internal_filehdr *internal_f = (struct internal_filehdr *) filehdr;
@@ -34,9 +33,8 @@ ticoff0_bad_format_hook (abfd, filehdr)
}
static bfd_boolean
-ticoff1_bad_format_hook (abfd, filehdr)
- bfd *abfd ATTRIBUTE_UNUSED;
- PTR filehdr;
+ticoff1_bad_format_hook (bfd * abfd ATTRIBUTE_UNUSED,
+ void * filehdr)
{
struct internal_filehdr *internal_f = (struct internal_filehdr *) filehdr;
@@ -49,9 +47,8 @@ ticoff1_bad_format_hook (abfd, filehdr)
/* Replace the stock _bfd_coff_is_local_label_name
to recognize TI COFF local labels. */
static bfd_boolean
-ticoff_bfd_is_local_label_name (abfd, name)
- bfd *abfd ATTRIBUTE_UNUSED;
- const char *name;
+ticoff_bfd_is_local_label_name (bfd *abfd ATTRIBUTE_UNUSED,
+ const char *name)
{
if (TICOFF_LOCAL_LABEL_P(name))
return TRUE;
« no previous file with comments | « bfd/targets.c ('k') | bfd/trad-core.c » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698