diff options
author | mrs <mrs@138bc75d-0d04-0410-961f-82ee72b054a4> | 2014-01-03 20:27:16 +0000 |
---|---|---|
committer | mrs <mrs@138bc75d-0d04-0410-961f-82ee72b054a4> | 2014-01-03 20:27:16 +0000 |
commit | 90079d10dd355193fe289fa0bfcb0d7be880d45a (patch) | |
tree | 1fc1e48175c81bb74ae40fb16f7ef4dcb1a9a2a9 | |
parent | c4050ce715e22d833296fa6cee94fff89a4bc9f9 (diff) | |
download | gcc-90079d10dd355193fe289fa0bfcb0d7be880d45a.tar.gz |
Fix one last issue with rtl.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/branches/wide-int@206324 138bc75d-0d04-0410-961f-82ee72b054a4
-rw-r--r-- | gcc/expr.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/gcc/expr.c b/gcc/expr.c index 2a82e3e4ceb..6fd4ea06869 100644 --- a/gcc/expr.c +++ b/gcc/expr.c @@ -9477,11 +9477,10 @@ expand_expr_real_1 (tree exp, rtx target, enum machine_mode tmode, return decl_rtl; case INTEGER_CST: - /* "Given that TYPE_PRECISION (type) is not always equal to + /* Given that TYPE_PRECISION (type) is not always equal to GET_MODE_PRECISION (TYPE_MODE (type)), we need to extend from the former to the latter according to the signedness of the - type". */ - + type. */ temp = immed_wide_int_const (wide_int::from (exp, GET_MODE_PRECISION (TYPE_MODE (type)), |