New files for IA-64 port.
[deliverable/binutils-gdb.git] / gas / subsegs.c
index f0efed1e64b9786473a5ce48190440151cccbcdd..b2bf70d15484cbb9dcf31923e7b9a43a1fa363e2 100644 (file)
@@ -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 */
 }
This page took 0.023565 seconds and 4 git commands to generate.