diff options
author | Anatoly Sokolov <aesok@post.ru> | 2010-05-03 20:21:15 +0400 |
---|---|---|
committer | Anatoly Sokolov <aesok@gcc.gnu.org> | 2010-05-03 20:21:15 +0400 |
commit | e6693cfa844724b9638ba35ebadc295eb8ef1b3c (patch) | |
tree | 1ce211eb88d194b02c3a946a70569bde7f903735 /gcc/double-int.h | |
parent | 8eb7bc3cda0c8a6560712056642b5dff43895f74 (diff) | |
download | gcc-e6693cfa844724b9638ba35ebadc295eb8ef1b3c.zip gcc-e6693cfa844724b9638ba35ebadc295eb8ef1b3c.tar.gz gcc-e6693cfa844724b9638ba35ebadc295eb8ef1b3c.tar.bz2 |
double-int.h (tree_to_double_int): Remove macro.
* double-int.h (tree_to_double_int): Remove macro.
(double_int_to_tree, double_int_fits_to_tree_p): Move prototypes ...
* tree.h (double_int_to_tree, double_int_fits_to_tree_p): ... here.
(tree_to_double_int): New function.
* double-int.c (double_int_to_tree, double_int_fits_to_tree_p):
Move ...
* tree.c (double_int_to_tree, double_int_fits_to_tree_p): ... here.
From-SVN: r158993
Diffstat (limited to 'gcc/double-int.h')
-rw-r--r-- | gcc/double-int.h | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/gcc/double-int.h b/gcc/double-int.h index 47991ca..65d25ef 100644 --- a/gcc/double-int.h +++ b/gcc/double-int.h @@ -61,13 +61,6 @@ typedef struct /* Constructors and conversions. */ -tree double_int_to_tree (tree, double_int); -bool double_int_fits_to_tree_p (const_tree, double_int); - -/* Constructs double_int from tree CST. */ - -#define tree_to_double_int(cst) (TREE_INT_CST (cst)) - /* Constructs double_int from integer CST. The bits over the precision of HOST_WIDE_INT are filled with the sign bit. */ |