Add missing break statement.

gcc/
	* omp-low.c (extract_omp_for_data): Add missing break statement.

From-SVN: r212971
This commit is contained in:
Thomas Schwinge 2014-07-24 10:27:34 +02:00 committed by Thomas Schwinge
parent b4c9af965f
commit 34f2124e5f
2 changed files with 5 additions and 0 deletions

View 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.

View 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;
}