Commit 2174b867 by Marcin Dalecki Committed by Marcin Dalecki

omp-low.c (expand_parallel_call): Use BSI_SAME_STMT instead of TSI_SAME_STMT,…

omp-low.c (expand_parallel_call): Use BSI_SAME_STMT instead of TSI_SAME_STMT, since that's the desired entity.

	* omp-low.c (expand_parallel_call): Use BSI_SAME_STMT instead of
	TSI_SAME_STMT, since that's the desired entity.

From-SVN: r117859
parent 02712c16
2006-10-18 Marcin Dalecki <martin@dalecki.de>
* omp-low.c (expand_parallel_call): Use BSI_SAME_STMT instead of
TSI_SAME_STMT, since that's the desired entity.
2006-10-17 Wolfgang Gellerich <gellerich@de.ibm.com>
* config/s390/contraints.md: New file.
......
......@@ -2535,7 +2535,7 @@ expand_omp_parallel (struct omp_region *region)
gcc_assert (!bsi_end_p (si)
&& TREE_CODE (bsi_stmt (si)) == OMP_RETURN);
t = build1 (RETURN_EXPR, void_type_node, NULL);
bsi_insert_after (&si, t, TSI_SAME_STMT);
bsi_insert_after (&si, t, BSI_SAME_STMT);
bsi_remove (&si, true);
}
}
......
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