aboutsummaryrefslogtreecommitdiff
path: root/gcc/bitmap.h
diff options
context:
space:
mode:
authorNathan Sidwell <nathan@codesourcery.com>2005-02-14 09:24:41 +0000
committerNathan Sidwell <nathan@gcc.gnu.org>2005-02-14 09:24:41 +0000
commit90bb1c1f1511ccb29fc3c23fe2ab871c24c6b040 (patch)
tree78f81c92bd77450f1528525aeae291d8e92e9486 /gcc/bitmap.h
parentbe0f1e5478e1aba8e8231e6f42d60b096ba2726a (diff)
downloadgcc-90bb1c1f1511ccb29fc3c23fe2ab871c24c6b040.zip
gcc-90bb1c1f1511ccb29fc3c23fe2ab871c24c6b040.tar.gz
gcc-90bb1c1f1511ccb29fc3c23fe2ab871c24c6b040.tar.bz2
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.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/bitmap.h b/gcc/bitmap.h
index beb59d8..beb3f4a 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);