diff options
Diffstat (limited to 'gcc/fold-const.c')
-rw-r--r-- | gcc/fold-const.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/fold-const.c b/gcc/fold-const.c index fe12942..f8b31b7 100644 --- a/gcc/fold-const.c +++ b/gcc/fold-const.c @@ -9536,7 +9536,7 @@ get_pointer_modulus_and_residue (tree expr, unsigned HOST_WIDE_INT *residue, if (code == ADDR_EXPR) { unsigned int bitalign; - bitalign = get_object_alignment_1 (TREE_OPERAND (expr, 0), residue); + get_object_alignment_1 (TREE_OPERAND (expr, 0), &bitalign, residue); *residue /= BITS_PER_UNIT; return bitalign / BITS_PER_UNIT; } |