+2016-04-28 Andrew MacLeod <amacleod@redhat.com>
+
+ * c-array-notation.c (fix_builtin_array_notation_fn): Fix final
+ argument to build_modify_expr in two cases.
+
2016-04-27 Bernd Schmidt <bschmidt@redhat.com>
* c-parser.c (c_parser_postfix_expression_after_primary): Call
new_yes_expr = build_modify_expr
(location, array_ind_value, TREE_TYPE (array_ind_value),
NOP_EXPR,
- location, func_parm, TREE_OPERAND (array_op0, 1));
+ location, func_parm, TREE_TYPE (TREE_OPERAND (array_op0, 1)));
}
new_yes_list = alloc_stmt_list ();
append_to_statement_list (new_yes_ind, &new_yes_list);
new_yes_expr = build_modify_expr
(location, array_ind_value, TREE_TYPE (array_ind_value),
NOP_EXPR,
- location, func_parm, TREE_OPERAND (array_op0, 1));
+ location, func_parm, TREE_TYPE (TREE_OPERAND (array_op0, 1)));
}
new_yes_list = alloc_stmt_list ();
append_to_statement_list (new_yes_ind, &new_yes_list);