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
This commit is contained in:
Thomas Schwinge 2014-02-21 10:18:15 +01:00 committed by Thomas Schwinge
parent 9b6da3c72d
commit aa6ef87451
2 changed files with 6 additions and 0 deletions

View File

@ -1,3 +1,8 @@
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>
* config/stormy16/stormy16.md (pushdqi1): Add mode to post_inc.

View File

@ -1121,6 +1121,7 @@ dump_gimple_omp_for (pretty_printer *buffer, gimple gs, int spc, int flags)
break;
case GF_OMP_FOR_KIND_CILKSIMD:
kind = " cilksimd";
break;
case GF_OMP_FOR_KIND_DISTRIBUTE:
kind = " distribute";
break;