diff options
-rw-r--r-- | gcc/cp/ChangeLog | 7 | ||||
-rw-r--r-- | gcc/cp/call.c | 2 | ||||
-rw-r--r-- | gcc/cp/typeck.c | 16 |
3 files changed, 16 insertions, 9 deletions
diff --git a/gcc/cp/ChangeLog b/gcc/cp/ChangeLog index 69677ae..24e629f 100644 --- a/gcc/cp/ChangeLog +++ b/gcc/cp/ChangeLog @@ -1,3 +1,10 @@ +2012-03-08 Paolo Carlini <paolo.carlini@oracle.com> + + * typeck.c (build_array_ref, cp_build_addr_expr_1, convert_ptrmem, + build_ptrmemfunc): Consistently forward the tsubst_flags_t + parameter. + * call.c (resolve_args): Likewise. + 2012-03-07 Jason Merrill <jason@redhat.com> PR c++/52521 diff --git a/gcc/cp/call.c b/gcc/cp/call.c index 8baad82..0bf3bb1 100644 --- a/gcc/cp/call.c +++ b/gcc/cp/call.c @@ -3740,7 +3740,7 @@ resolve_args (VEC(tree,gc) *args, tsubst_flags_t complain) error ("invalid use of void expression"); return NULL; } - else if (invalid_nonstatic_memfn_p (arg, tf_warning_or_error)) + else if (invalid_nonstatic_memfn_p (arg, complain)) return NULL; } return args; diff --git a/gcc/cp/typeck.c b/gcc/cp/typeck.c index ba5ae46..643454c 100644 --- a/gcc/cp/typeck.c +++ b/gcc/cp/typeck.c @@ -2884,7 +2884,7 @@ cp_build_array_ref (location_t loc, tree array, tree idx, complain), cp_build_array_ref (loc, TREE_OPERAND (array, 2), idx, complain), - tf_warning_or_error); + complain); protected_set_expr_location (ret, loc); return ret; @@ -5033,7 +5033,7 @@ cp_build_addr_expr_1 (tree arg, bool strict_lvalue, tsubst_flags_t complain) build_ptrmemfunc_type (argtype); val = build_ptrmemfunc (argtype, val, 0, /*c_cast_p=*/false, - tf_warning_or_error); + complain); } return val; @@ -5781,11 +5781,11 @@ convert_ptrmem (tree type, tree expr, bool allow_inverse_p, EQ_EXPR, expr, build_int_cst (TREE_TYPE (expr), -1), - tf_warning_or_error); + complain); op1 = build_nop (ptrdiff_type_node, expr); op2 = cp_build_binary_op (input_location, PLUS_EXPR, op1, delta, - tf_warning_or_error); + complain); expr = fold_build3_loc (input_location, COND_EXPR, ptrdiff_type_node, cond, op1, op2); @@ -7208,7 +7208,7 @@ build_ptrmemfunc (tree type, tree pfn, int force, bool c_cast_p, return pfn; else if (integer_zerop (n)) return build_reinterpret_cast (to_type, pfn, - tf_warning_or_error); + complain); } if (TREE_SIDE_EFFECTS (pfn)) @@ -7229,9 +7229,9 @@ build_ptrmemfunc (tree type, tree pfn, int force, bool c_cast_p, if (TARGET_PTRMEMFUNC_VBIT_LOCATION == ptrmemfunc_vbit_in_delta) n = cp_build_binary_op (input_location, LSHIFT_EXPR, n, integer_one_node, - tf_warning_or_error); + complain); delta = cp_build_binary_op (input_location, - PLUS_EXPR, delta, n, tf_warning_or_error); + PLUS_EXPR, delta, n, complain); return build_ptrmemfunc1 (to_type, delta, npfn); } @@ -7245,7 +7245,7 @@ build_ptrmemfunc (tree type, tree pfn, int force, bool c_cast_p, } if (type_unknown_p (pfn)) - return instantiate_type (type, pfn, tf_warning_or_error); + return instantiate_type (type, pfn, complain); fn = TREE_OPERAND (pfn, 0); gcc_assert (TREE_CODE (fn) == FUNCTION_DECL |