Commit 34f2124e by Thomas Schwinge Committed by Thomas Schwinge

Add missing break statement.

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

From-SVN: r212971
parent b4c9af96
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.
......
......@@ -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;
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment