* as.h (seg_not_empty_p): Return int, not bfd_boolean.
authorNathan Sidwell <nathan@codesourcery.com>
Mon, 7 Feb 2005 17:53:26 +0000 (17:53 +0000)
committerNathan Sidwell <nathan@codesourcery.com>
Mon, 7 Feb 2005 17:53:26 +0000 (17:53 +0000)
* subsegs.c (seg_not_empty_p): Likewise.

gas/ChangeLog
gas/as.h
gas/subsegs.c

index ceb6e6ba47ac21c792a1bc4221cefd85d2f69de1..42bd4c911ce708153372cf38a70a0a8906ccf953 100644 (file)
@@ -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>
 
        * config/tc-maxq.c (md_estimate_size_before_relax): Correct the
index 9ffc99cda96d04b7fe490a6473d6e5063124f7fa..354f1832ec9835652693ea7279d0c889e3bb9c42 100644 (file)
--- 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);
index 287dd1700c9275db8473710d758ef38ba2171aaf..828fa4ae6c1282bf59274fcb353012e800060e3d 100644 (file)
@@ -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);
This page took 0.027127 seconds and 4 git commands to generate.