summaryrefslogtreecommitdiff
path: root/gcc/sbitmap.c
diff options
context:
space:
mode:
authorkazu <kazu@138bc75d-0d04-0410-961f-82ee72b054a4>2002-09-27 12:48:07 +0000
committerkazu <kazu@138bc75d-0d04-0410-961f-82ee72b054a4>2002-09-27 12:48:07 +0000
commitf712a0dcd3010d64361b11d5f7b7d71700f69aab (patch)
treec2f7682329bf354ca96d9ae19d6a6cfe4312c16a /gcc/sbitmap.c
parent5d822c0058e6e4da7d30bd003fd9696370a88aef (diff)
downloadgcc-f712a0dcd3010d64361b11d5f7b7d71700f69aab.tar.gz
* LANGUAGES: Follow spelling conventions.
* rtl.def: Likewise. * sbitmap.c: Likewise. * sched-int.h: Likewise. * sched-rgn.c: Likewise. * sibcall.c: Likewise. * simplify-rtx.c: Likewise. * ssa.c: Likewise. * stab.def: Likewise. * stmt.c: Likewise. * stor-layout.c: Likewise. * target.h: Likewise. * timevar.c: Likewise. * toplev.c: Likewise. * tree-dump.c: Likewise. * tree-inline.c: Likewise. * tree.c: Likewise. * tree.def: Likewise. * tree.h: Likewise. * unroll.c: Likewise. * varasm.c: Likewise. * vmsdbgout.c: Likewise. * treelang/treelang.texi: Likewise. * treelang/treetree.c: Likewise. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@57587 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/sbitmap.c')
-rw-r--r--gcc/sbitmap.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/gcc/sbitmap.c b/gcc/sbitmap.c
index 170d87df839..74aa7cd1b4e 100644
--- a/gcc/sbitmap.c
+++ b/gcc/sbitmap.c
@@ -241,7 +241,7 @@ sbitmap_difference (dst, a, b)
}
/* Set DST to be (A and B).
- Return non-zero if any change is made. */
+ Return nonzero if any change is made. */
bool
sbitmap_a_and_b_cg (dst, a, b)
@@ -277,7 +277,7 @@ sbitmap_a_and_b (dst, a, b)
}
/* Set DST to be (A xor B)).
- Return non-zero if any change is made. */
+ Return nonzero if any change is made. */
bool
sbitmap_a_xor_b_cg (dst, a, b)
@@ -313,7 +313,7 @@ sbitmap_a_xor_b (dst, a, b)
}
/* Set DST to be (A or B)).
- Return non-zero if any change is made. */
+ Return nonzero if any change is made. */
bool
sbitmap_a_or_b_cg (dst, a, b)
@@ -348,7 +348,7 @@ sbitmap_a_or_b (dst, a, b)
*dstp++ = *ap++ | *bp++;
}
-/* Return non-zero if A is a subset of B. */
+/* Return nonzero if A is a subset of B. */
bool
sbitmap_a_subset_b_p (a, b)
@@ -365,7 +365,7 @@ sbitmap_a_subset_b_p (a, b)
}
/* Set DST to be (A or (B and C)).
- Return non-zero if any change is made. */
+ Return nonzero if any change is made. */
bool
sbitmap_a_or_b_and_c_cg (dst, a, b, c)
@@ -403,7 +403,7 @@ sbitmap_a_or_b_and_c (dst, a, b, c)
}
/* Set DST to be (A and (B or C)).
- Return non-zero if any change is made. */
+ Return nonzero if any change is made. */
bool
sbitmap_a_and_b_or_c_cg (dst, a, b, c)