diff options
author | Thomas Schwinge <thomas@codesourcery.com> | 2014-02-21 10:18:15 +0100 |
---|---|---|
committer | Thomas Schwinge <tschwinge@gcc.gnu.org> | 2014-02-21 10:18:15 +0100 |
commit | aa6ef874510f64ed0c9d2e6a0812cf0731a49899 (patch) | |
tree | 7146ea6cbd5ffbfec58cc8df5e0552da45e69cb7 /gcc/gimple-pretty-print.c | |
parent | 9b6da3c72df615372602ac87e4e35a89f6cc3eb1 (diff) | |
download | gcc-aa6ef874510f64ed0c9d2e6a0812cf0731a49899.zip gcc-aa6ef874510f64ed0c9d2e6a0812cf0731a49899.tar.gz gcc-aa6ef874510f64ed0c9d2e6a0812cf0731a49899.tar.bz2 |
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
Diffstat (limited to 'gcc/gimple-pretty-print.c')
-rw-r--r-- | gcc/gimple-pretty-print.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/gcc/gimple-pretty-print.c b/gcc/gimple-pretty-print.c index 2d1e1c7..741cd92 100644 --- a/gcc/gimple-pretty-print.c +++ b/gcc/gimple-pretty-print.c @@ -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; |