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/expr.c | |
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/expr.c')
-rw-r--r-- | gcc/expr.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/expr.c b/gcc/expr.c index 9c5056b3f13..8ce9b49e847 100644 --- a/gcc/expr.c +++ b/gcc/expr.c @@ -4435,7 +4435,7 @@ store_expr (tree exp, rtx target, int call_param_p, bool nontemporal) /* Some types, e.g. Fortran's logical*4, won't have a signed version, so use the mode instead. */ tree ntype - = (get_signed_or_unsigned_type + = (signed_or_unsigned_type_for (SUBREG_PROMOTED_UNSIGNED_P (target), TREE_TYPE (exp))); if (ntype == NULL) ntype = lang_hooks.types.type_for_mode |