aboutsummaryrefslogtreecommitdiff
path: root/bfd/bfd.c
diff options
context:
space:
mode:
authorNick Clifton <nickc@redhat.com>2014-01-29 13:46:39 +0000
committerNick Clifton <nickc@redhat.com>2014-01-29 13:46:39 +0000
commit27b829ee701e29804216b3803fbaeb629be27491 (patch)
tree7b1217c885e223af588fed86b72d8eff2bc3d683 /bfd/bfd.c
parenta7c88acd1ed0b886e7aff708df153c5663a9ebbb (diff)
downloadgdb-27b829ee701e29804216b3803fbaeb629be27491.zip
gdb-27b829ee701e29804216b3803fbaeb629be27491.tar.gz
gdb-27b829ee701e29804216b3803fbaeb629be27491.tar.bz2
Following up on Tom's suggestion I am checking in a patch to replace the various
bfd_xxx_set macros with static inline functions, so that we can avoid compile time warnings about comma expressions with unused values. * bfd-in.h (bfd_set_section_vma): Delete. (bfd_set_section_alignment): Delete. (bfd_set_section_userdata): Delete. (bfd_set_cacheable): Delete. * bfd.c (bfd_set_cacheable): New static inline function. * section.c (bfd_set_section_userdata): Likewise. (bfd_set_section_vma): Likewise. (bfd_set_section_alignment): Likewise. * bfd-in2.h: Regenerate.
Diffstat (limited to 'bfd/bfd.c')
-rw-r--r--bfd/bfd.c8
1 files changed, 8 insertions, 0 deletions
diff --git a/bfd/bfd.c b/bfd/bfd.c
index 8d0580c..2d174f3 100644
--- a/bfd/bfd.c
+++ b/bfd/bfd.c
@@ -311,6 +311,14 @@ CODE_FRAGMENT
. unsigned int selective_search : 1;
.};
.
+.{* See note beside bfd_set_section_userdata. *}
+.static inline bfd_boolean
+.bfd_set_cacheable (bfd * abfd, bfd_boolean val)
+.{
+. abfd->cacheable = val;
+. return TRUE;
+.}
+.
*/
#include "sysdep.h"