On Fri, Jan 09, 2015 at 09:54:12AM +0100, Tom de Vries wrote:
> >>0001-Fix-gcc_assert-in-expand_omp_for_static_chunk.patch
> >>
> >>
> >>2014-11-12 Tom de Vries<[email protected]>
Two spaces before <.
> >>
> >> * omp-low.c (expand_omp_for_static_chunk): Fix assert.
Ok, thanks.
> >> gcc/omp-low.c | 2 +-
> >> 1 file changed, 1 insertion(+), 1 deletion(-)
> >>
> >>diff --git a/gcc/omp-low.c b/gcc/omp-low.c
> >>index b59d069..5210de1 100644
> >>--- a/gcc/omp-low.c
> >>+++ b/gcc/omp-low.c
> >>@@ -6775,7 +6775,7 @@ expand_omp_for_static_chunk (struct omp_region
> >>*region,
> >> locus = redirect_edge_var_map_location (vm);
> >> add_phi_arg (nphi, redirect_edge_var_map_def (vm), re, locus);
> >> }
> >>- gcc_assert (!gsi_end_p (psi) && i == head->length ());
> >>+ gcc_assert (gsi_end_p (psi) && i == head->length ());
> >> redirect_edge_var_map_clear (re);
> >> while (1)
> >> {
> >>-- 1.9.1
> >>
> >
Jakub