diff options
author | espindola <espindola@138bc75d-0d04-0410-961f-82ee72b054a4> | 2007-06-11 15:40:55 +0000 |
---|---|---|
committer | espindola <espindola@138bc75d-0d04-0410-961f-82ee72b054a4> | 2007-06-11 15:40:55 +0000 |
commit | 11773141a9a1b8b945255eb8dbcde0d9e25c4e6f (patch) | |
tree | 09e966f66888827cc56e0e29aacd33c5d45e7819 /gcc/tree.h | |
parent | 2bff6d8b45f3a32ac3ecd70e9f3898f8feba88b5 (diff) | |
download | gcc-11773141a9a1b8b945255eb8dbcde0d9e25c4e6f.tar.gz |
really remove signed(_or_unsigned)?_type langhooks
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@125621 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/tree.h')
-rw-r--r-- | gcc/tree.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/gcc/tree.h b/gcc/tree.h index bd6232d42ef..1023b86424e 100644 --- a/gcc/tree.h +++ b/gcc/tree.h @@ -3776,6 +3776,7 @@ extern tree build_call_array (tree, tree, int, tree*); extern tree make_signed_type (int); extern tree make_unsigned_type (int); +extern tree signed_or_unsigned_type_for (int, tree); extern tree signed_type_for (tree); extern tree unsigned_type_for (tree); extern void initialize_sizetypes (bool); @@ -3820,8 +3821,6 @@ extern bool tree_expr_nonnegative_warnv_p (tree, bool *); extern bool may_negate_without_overflow_p (tree); extern tree get_inner_array_type (tree); -extern tree get_signed_or_unsigned_type (int unsignedp, tree type); - /* From expmed.c. Since rtl.h is included after tree.h, we can't put the prototype here. Rtl.h does declare the prototype if tree.h had been included. */ |