Commit 41475e96 by Jakub Jelinek Committed by Jakub Jelinek

tree-vect-data-refs.c (vect_analyze_data_refs): For clobbers not at the end of…

tree-vect-data-refs.c (vect_analyze_data_refs): For clobbers not at the end of datarefs vector use ordered_remove to avoid...

	* tree-vect-data-refs.c (vect_analyze_data_refs): For clobbers
	not at the end of datarefs vector use ordered_remove to avoid
	reordering datarefs vector.

From-SVN: r207632
parent 80a16a87
2014-02-08 Jakub Jelinek <jakub@redhat.com>
* tree-vect-data-refs.c (vect_analyze_data_refs): For clobbers
not at the end of datarefs vector use ordered_remove to avoid
reordering datarefs vector.
PR c/59984
* gimplify.c (gimplify_bind_expr): In ORT_SIMD region
mark local addressable non-static vars as GOVD_PRIVATE
......
......@@ -3303,7 +3303,8 @@ again:
datarefs.pop ();
break;
}
datarefs[i] = dr = datarefs.pop ();
datarefs.ordered_remove (i);
dr = datarefs[i];
goto again;
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment