Commit aa6ef874 by Thomas Schwinge Committed by Thomas Schwinge

Correct TDF_RAW pretty-printing of GIMPLE_OMP_FOR's GF_OMP_FOR_KIND_CILKSIMD.

	gcc/
	* gimple-pretty-print.c (dump_gimple_omp_for) [flags & TDF_RAW]
	<case GF_OMP_FOR_KIND_CILKSIMD>: Add missing break statement.

From-SVN: r207987
parent 9b6da3c7
2014-02-21 Thomas Schwinge <thomas@codesourcery.com>
* gimple-pretty-print.c (dump_gimple_omp_for) [flags & TDF_RAW]
<case GF_OMP_FOR_KIND_CILKSIMD>: Add missing break statement.
2014-02-21 Nick Clifton <nickc@redhat.com> 2014-02-21 Nick Clifton <nickc@redhat.com>
* config/stormy16/stormy16.md (pushdqi1): Add mode to post_inc. * config/stormy16/stormy16.md (pushdqi1): Add mode to post_inc.
......
...@@ -1121,6 +1121,7 @@ dump_gimple_omp_for (pretty_printer *buffer, gimple gs, int spc, int flags) ...@@ -1121,6 +1121,7 @@ dump_gimple_omp_for (pretty_printer *buffer, gimple gs, int spc, int flags)
break; break;
case GF_OMP_FOR_KIND_CILKSIMD: case GF_OMP_FOR_KIND_CILKSIMD:
kind = " cilksimd"; kind = " cilksimd";
break;
case GF_OMP_FOR_KIND_DISTRIBUTE: case GF_OMP_FOR_KIND_DISTRIBUTE:
kind = " distribute"; kind = " distribute";
break; break;
......
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