diff options
Diffstat (limited to 'gas/subsegs.c')
-rw-r--r-- | gas/subsegs.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/gas/subsegs.c b/gas/subsegs.c index f0efed1e64b..b2bf70d1548 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 */ } |