* as.h (seg_not_empty_p): Return int, not bfd_boolean.
* subsegs.c (seg_not_empty_p): Likewise.
This commit is contained in:
parent
caadb61db9
commit
4ee4d24937
3 changed files with 7 additions and 2 deletions
|
@ -1,3 +1,8 @@
|
||||||
|
2005-02-07 Nathan Sidwell <nathan@codesourcery.com>
|
||||||
|
|
||||||
|
* as.h (seg_not_empty_p): Return int, not bfd_boolean.
|
||||||
|
* subsegs.c (seg_not_empty_p): Likewise.
|
||||||
|
|
||||||
2005-02-07 Inderpreet Singh <inderpreetb@noida.hcltech.com>
|
2005-02-07 Inderpreet Singh <inderpreetb@noida.hcltech.com>
|
||||||
|
|
||||||
* config/tc-maxq.c (md_estimate_size_before_relax): Correct the
|
* config/tc-maxq.c (md_estimate_size_before_relax): Correct the
|
||||||
|
|
2
gas/as.h
2
gas/as.h
|
@ -577,7 +577,7 @@ segT subseg_new (const char *, subsegT);
|
||||||
segT subseg_force_new (const char *, subsegT);
|
segT subseg_force_new (const char *, subsegT);
|
||||||
void subseg_set (segT, subsegT);
|
void subseg_set (segT, subsegT);
|
||||||
int subseg_text_p (segT);
|
int subseg_text_p (segT);
|
||||||
bfd_boolean seg_not_empty_p (segT);
|
int seg_not_empty_p (segT);
|
||||||
void start_dependencies (char *);
|
void start_dependencies (char *);
|
||||||
void register_dependency (char *);
|
void register_dependency (char *);
|
||||||
void print_dependencies (void);
|
void print_dependencies (void);
|
||||||
|
|
|
@ -601,7 +601,7 @@ subseg_text_p (segT sec)
|
||||||
fr_fix == 0 one still contributes data. Think of this as
|
fr_fix == 0 one still contributes data. Think of this as
|
||||||
seg_definitely_not_empty_p. */
|
seg_definitely_not_empty_p. */
|
||||||
|
|
||||||
bfd_boolean
|
int
|
||||||
seg_not_empty_p (segT sec)
|
seg_not_empty_p (segT sec)
|
||||||
{
|
{
|
||||||
segment_info_type *seginfo = seg_info (sec);
|
segment_info_type *seginfo = seg_info (sec);
|
||||||
|
|
Loading…
Reference in a new issue