diff options
author | Nathan Sidwell <nathan@codesourcery.com> | 2005-02-14 09:24:41 +0000 |
---|---|---|
committer | Nathan Sidwell <nathan@gcc.gnu.org> | 2005-02-14 09:24:41 +0000 |
commit | 90bb1c1f1511ccb29fc3c23fe2ab871c24c6b040 (patch) | |
tree | 78f81c92bd77450f1528525aeae291d8e92e9486 /gcc/bitmap.h | |
parent | be0f1e5478e1aba8e8231e6f42d60b096ba2726a (diff) | |
download | gcc-90bb1c1f1511ccb29fc3c23fe2ab871c24c6b040.tar.gz |
bitmap.h (bitmap_and_compl_into): Return bool.
* bitmap.h (bitmap_and_compl_into): Return bool.
* bitmap.c (bitmap_and_compl_into): Return changed flag.
From-SVN: r95004
Diffstat (limited to 'gcc/bitmap.h')
-rw-r--r-- | gcc/bitmap.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/bitmap.h b/gcc/bitmap.h index beb59d85f86..beb3f4a1578 100644 --- a/gcc/bitmap.h +++ b/gcc/bitmap.h @@ -102,7 +102,7 @@ extern bool bitmap_intersect_compl_p (bitmap, bitmap); extern void bitmap_and (bitmap, bitmap, bitmap); extern void bitmap_and_into (bitmap, bitmap); extern void bitmap_and_compl (bitmap, bitmap, bitmap); -extern void bitmap_and_compl_into (bitmap, bitmap); +extern bool bitmap_and_compl_into (bitmap, bitmap); extern bool bitmap_ior (bitmap, bitmap, bitmap); extern bool bitmap_ior_into (bitmap, bitmap); extern void bitmap_xor (bitmap, bitmap, bitmap); |