]> gcc.gnu.org Git - gcc.git/commitdiff
Add missing break statement.
authorThomas Schwinge <thomas@codesourcery.com>
Thu, 24 Jul 2014 08:27:34 +0000 (10:27 +0200)
committerThomas Schwinge <tschwinge@gcc.gnu.org>
Thu, 24 Jul 2014 08:27:34 +0000 (10:27 +0200)
gcc/
* omp-low.c (extract_omp_for_data): Add missing break statement.

From-SVN: r212971

gcc/ChangeLog
gcc/omp-low.c

index b9542459c9dc91f47f790f882e4747fd6b89a2cd..b436332f6a6ea2edc9e1ce77fd43fee06c5c0340 100644 (file)
@@ -1,3 +1,7 @@
+2014-07-24  Thomas Schwinge  <thomas@codesourcery.com>
+
+       * omp-low.c (extract_omp_for_data): Add missing break statement.
+
 2014-07-24  Richard Biener  <rguenther@suse.de>
 
        * tree-inline.h (estimate_move_cost): Add speed_p parameter.
index 1b1cf2ce307ae7b342780829677fd986196ad40a..1ee1c3a769c3c341b436f39630e3235cea0b61fa 100644 (file)
@@ -341,6 +341,7 @@ extract_omp_for_data (gimple for_stmt, struct omp_for_data *fd,
            collapse_iter = &OMP_CLAUSE_COLLAPSE_ITERVAR (t);
            collapse_count = &OMP_CLAUSE_COLLAPSE_COUNT (t);
          }
+       break;
       default:
        break;
       }
This page took 0.115369 seconds and 5 git commands to generate.