]> git.ipfire.org Git - thirdparty/gcc.git/commitdiff
Correct TDF_RAW pretty-printing of GIMPLE_OMP_FOR's GF_OMP_FOR_KIND_CILKSIMD.
authorThomas Schwinge <thomas@codesourcery.com>
Fri, 21 Feb 2014 09:18:15 +0000 (10:18 +0100)
committerThomas Schwinge <tschwinge@gcc.gnu.org>
Fri, 21 Feb 2014 09:18:15 +0000 (10:18 +0100)
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

gcc/ChangeLog
gcc/gimple-pretty-print.c

index 67299afada4eca143311e1f21f6888adbcaa43e0..cc9031bc18465d5e78b6e80e5bd6c97327974bef 100644 (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.
index 2d1e1c707e91ac8ab272b9daf14894efe80ed6aa..741cd92998337157c51d5ac131f751ca3f86d302 100644 (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;