aboutsummaryrefslogtreecommitdiff
path: root/gas/subsegs.c
diff options
context:
space:
mode:
Diffstat (limited to 'gas/subsegs.c')
-rw-r--r--gas/subsegs.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/gas/subsegs.c b/gas/subsegs.c
index f0efed1..b2bf70d 100644
--- a/gas/subsegs.c
+++ b/gas/subsegs.c
@@ -591,20 +591,20 @@ subseg_text_p (sec)
const char * const *p;
if (sec == data_section || sec == bss_section)
- return false;
+ return 0;
for (p = nontext_section_names; *p != NULL; ++p)
{
if (strcmp (segment_name (sec), *p) == 0)
- return false;
+ return 0;
#ifdef obj_segment_name
if (strcmp (obj_segment_name (sec), *p) == 0)
- return false;
+ return 0;
#endif
}
- return true;
+ return 1;
#endif /* ! BFD_ASSEMBLER */
}