From b79dc18ae87999996a7b365f056c73011f2b3388 Mon Sep 17 00:00:00 2001 From: aesok Date: Mon, 3 May 2010 16:21:15 +0000 Subject: * 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. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@158993 138bc75d-0d04-0410-961f-82ee72b054a4 --- gcc/double-int.h | 7 ------- 1 file changed, 7 deletions(-) (limited to 'gcc/double-int.h') diff --git a/gcc/double-int.h b/gcc/double-int.h index 47991ca41b8..65d25ef04cb 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. */ -- cgit v1.2.1