From 4ee4d24937d552e97baee32e10575e716707226c Mon Sep 17 00:00:00 2001 From: Nathan Sidwell Date: Mon, 7 Feb 2005 17:53:26 +0000 Subject: * as.h (seg_not_empty_p): Return int, not bfd_boolean. * subsegs.c (seg_not_empty_p): Likewise. --- gas/ChangeLog | 5 +++++ gas/as.h | 2 +- gas/subsegs.c | 2 +- 3 files changed, 7 insertions(+), 2 deletions(-) (limited to 'gas') diff --git a/gas/ChangeLog b/gas/ChangeLog index ceb6e6b..42bd4c9 100644 --- a/gas/ChangeLog +++ b/gas/ChangeLog @@ -1,3 +1,8 @@ +2005-02-07 Nathan Sidwell + + * as.h (seg_not_empty_p): Return int, not bfd_boolean. + * subsegs.c (seg_not_empty_p): Likewise. + 2005-02-07 Inderpreet Singh * config/tc-maxq.c (md_estimate_size_before_relax): Correct the diff --git a/gas/as.h b/gas/as.h index 9ffc99c..354f183 100644 --- a/gas/as.h +++ b/gas/as.h @@ -577,7 +577,7 @@ segT subseg_new (const char *, subsegT); segT subseg_force_new (const char *, subsegT); void subseg_set (segT, subsegT); int subseg_text_p (segT); -bfd_boolean seg_not_empty_p (segT); +int seg_not_empty_p (segT); void start_dependencies (char *); void register_dependency (char *); void print_dependencies (void); diff --git a/gas/subsegs.c b/gas/subsegs.c index 287dd17..828fa4a 100644 --- a/gas/subsegs.c +++ b/gas/subsegs.c @@ -601,7 +601,7 @@ subseg_text_p (segT sec) fr_fix == 0 one still contributes data. Think of this as seg_definitely_not_empty_p. */ -bfd_boolean +int seg_not_empty_p (segT sec) { segment_info_type *seginfo = seg_info (sec); -- cgit v1.1