diff options
Diffstat (limited to 'gcc/cp/call.c')
-rw-r--r-- | gcc/cp/call.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/cp/call.c b/gcc/cp/call.c index 0034c1c..e9ab30d 100644 --- a/gcc/cp/call.c +++ b/gcc/cp/call.c @@ -5198,7 +5198,7 @@ build_conditional_expr_1 (const op_location_t &loc, if (!COMPARISON_CLASS_P (arg1)) { - tree cmp_type = build_same_sized_truth_vector_type (arg1_type); + tree cmp_type = truth_type_for (arg1_type); arg1 = build2 (NE_EXPR, cmp_type, arg1, build_zero_cst (arg1_type)); } return build3_loc (loc, VEC_COND_EXPR, arg2_type, arg1, arg2, arg3); |