diff options
author | Fariborz Jahanian <fjahanian@apple.com> | 2005-08-31 15:55:52 +0000 |
---|---|---|
committer | Fariborz Jahanian <fjahanian@gcc.gnu.org> | 2005-08-31 15:55:52 +0000 |
commit | dc38a61086ce5044b9b78c48e7897179b819e06e (patch) | |
tree | 18099d4c9108cab72f9d8b420877fd4281f5f06d /gcc/expr.c | |
parent | f471f0fcc76c7e67c8c958f25203660d78913537 (diff) | |
download | gcc-dc38a61086ce5044b9b78c48e7897179b819e06e.zip gcc-dc38a61086ce5044b9b78c48e7897179b819e06e.tar.gz gcc-dc38a61086ce5044b9b78c48e7897179b819e06e.tar.bz2 |
Fix ppc -m64 constant address expression expansion bug.
Oked by Richard Henderson.
From-SVN: r103676
Diffstat (limited to 'gcc/expr.c')
-rw-r--r-- | gcc/expr.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -7673,7 +7673,7 @@ expand_expr_real_1 (tree exp, rtx target, enum machine_mode tmode, } else if (TREE_CODE (TREE_OPERAND (exp, 1)) == INTEGER_CST - && GET_MODE_BITSIZE (mode) <= HOST_BITS_PER_INT + && GET_MODE_BITSIZE (mode) <= HOST_BITS_PER_WIDE_INT && TREE_CONSTANT (TREE_OPERAND (exp, 0))) { rtx constant_part; |