PR bootstrap/37152
* tree-vect-transform.c (vect_create_epilog_for_reduction): Change =
to == in assert statement.
(vectorizable_reduction): Fix typo.
From-SVN: r139224
+2008-08-19 Dorit Nuzman <dorit@il.ibm.com>
+
+ PR bootstrap/37152
+ * tree-vect-transform.c (vect_create_epilog_for_reduction): Change =
+ to == in assert statement.
+ (vectorizable_reduction): Fix typo.
+
2008-08-18 H.J. Lu <hongjiu.lu@intel.com>
PR bootstrap/37153
goto vect_finalize_reduction;
/* FORNOW */
- gcc_assert (ncopies = 1);
+ gcc_assert (ncopies == 1);
/* 2.3 Create the reduction code, using one of the three schemes described
above. */
prev_phi_info = vinfo_for_stmt (new_phi);
}
- /* Finalize the reduction-phi (set it's arguments) and create the
+ /* Finalize the reduction-phi (set its arguments) and create the
epilog reduction code. */
if (!single_defuse_cycle)
new_temp = gimple_assign_lhs (*vec_stmt);