summaryrefslogtreecommitdiff
path: root/gcc/double-int.h
diff options
context:
space:
mode:
authorrguenth <rguenth@138bc75d-0d04-0410-961f-82ee72b054a4>2010-08-04 09:15:51 +0000
committerrguenth <rguenth@138bc75d-0d04-0410-961f-82ee72b054a4>2010-08-04 09:15:51 +0000
commitd41e3320812c9a849b32c60aa7c7b4f4de62995f (patch)
tree048c888ac173b7ff5e353331c625f86b580387ee /gcc/double-int.h
parent0be9eeeeffec9dcc76041dd8d019e9782e28569c (diff)
downloadgcc-d41e3320812c9a849b32c60aa7c7b4f4de62995f.tar.gz
2010-08-04 Richard Guenther <rguenther@suse.de>
* Makefile.in (double-int.o): Add $(TOPLEV_H) dependency. * double-int.h (double_int_ctz): Declare. * double-int.c (double_int_ctz): New function. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@162859 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/double-int.h')
-rw-r--r--gcc/double-int.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/gcc/double-int.h b/gcc/double-int.h
index b14693d4fbd..c2f74e95e28 100644
--- a/gcc/double-int.h
+++ b/gcc/double-int.h
@@ -148,7 +148,9 @@ double_int double_int_umod (double_int, double_int, unsigned);
double_int double_int_divmod (double_int, double_int, bool, unsigned, double_int *);
double_int double_int_sdivmod (double_int, double_int, unsigned, double_int *);
double_int double_int_udivmod (double_int, double_int, unsigned, double_int *);
+
double_int double_int_setbit (double_int, unsigned);
+int double_int_ctz (double_int);
/* Logical operations. */