diff options
Diffstat (limited to 'gcc/tree-affine.c')
-rw-r--r-- | gcc/tree-affine.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/gcc/tree-affine.c b/gcc/tree-affine.c index 97fb13b..68d056c 100644 --- a/gcc/tree-affine.c +++ b/gcc/tree-affine.c @@ -260,7 +260,7 @@ tree_to_aff_combination (tree expr, tree type, aff_tree *comb) tree cst, core, toffset; HOST_WIDE_INT bitpos, bitsize; machine_mode mode; - int unsignedp, volatilep; + int unsignedp, reversep, volatilep; STRIP_NOPS (expr); @@ -317,8 +317,8 @@ tree_to_aff_combination (tree expr, tree type, aff_tree *comb) return; } core = get_inner_reference (TREE_OPERAND (expr, 0), &bitsize, &bitpos, - &toffset, &mode, &unsignedp, &volatilep, - false); + &toffset, &mode, &unsignedp, &reversep, + &volatilep, false); if (bitpos % BITS_PER_UNIT != 0) break; aff_combination_const (comb, type, bitpos / BITS_PER_UNIT); @@ -885,10 +885,10 @@ get_inner_reference_aff (tree ref, aff_tree *addr, widest_int *size) HOST_WIDE_INT bitsize, bitpos; tree toff; machine_mode mode; - int uns, vol; + int uns, rev, vol; aff_tree tmp; tree base = get_inner_reference (ref, &bitsize, &bitpos, &toff, &mode, - &uns, &vol, false); + &uns, &rev, &vol, false); tree base_addr = build_fold_addr_expr (base); /* ADDR = &BASE + TOFF + BITPOS / BITS_PER_UNIT. */ |