diff options
Diffstat (limited to 'gcc/tree-vect-stmts.c')
-rw-r--r-- | gcc/tree-vect-stmts.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/tree-vect-stmts.c b/gcc/tree-vect-stmts.c index fcea4d0654b..7d9c9ed8d7d 100644 --- a/gcc/tree-vect-stmts.c +++ b/gcc/tree-vect-stmts.c @@ -2675,7 +2675,7 @@ vectorizable_conversion (gimple stmt, gimple_stmt_iterator *gsi, { if (modifier == WIDEN) { - vec_oprnds0.create (multi_step_cvt ? vect_pow2(multi_step_cvt) : 1); + vec_oprnds0.create (multi_step_cvt ? vect_pow2 (multi_step_cvt) : 1); if (op_type == binary_op) vec_oprnds1.create (1); } @@ -4790,7 +4790,7 @@ vectorizable_load (gimple stmt, gimple_stmt_iterator *gsi, gimple *vec_stmt, (unshare_expr (DR_BASE_ADDRESS (dr)), size_binop (PLUS_EXPR, convert_to_ptrofftype (unshare_expr (DR_OFFSET (dr))), - convert_to_ptrofftype (DR_INIT(dr)))); + convert_to_ptrofftype (DR_INIT (dr)))); stride_step = fold_convert (sizetype, unshare_expr (DR_STEP (dr))); /* For a load with loop-invariant (but other than power-of-2) |