diff options
author | jakub <jakub@138bc75d-0d04-0410-961f-82ee72b054a4> | 2014-05-14 13:38:57 +0000 |
---|---|---|
committer | jakub <jakub@138bc75d-0d04-0410-961f-82ee72b054a4> | 2014-05-14 13:38:57 +0000 |
commit | d046e809d9915ac395a6ea1f124a2b53ab464082 (patch) | |
tree | ab5a4236ac69af7ab35cb2dfa1ddba7981a3f196 /gcc/omp-low.c | |
parent | 881c781d1c9f36fcfeb909723ef6272814d07065 (diff) | |
download | gcc-d046e809d9915ac395a6ea1f124a2b53ab464082.tar.gz |
* omp-low.c (expand_parallel_call): Remove shadow variable.
(expand_omp_taskreg): Likewise.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@210423 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/omp-low.c')
-rw-r--r-- | gcc/omp-low.c | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/gcc/omp-low.c b/gcc/omp-low.c index ddd2bd563e1..a2a64ad1dcd 100644 --- a/gcc/omp-low.c +++ b/gcc/omp-low.c @@ -4227,8 +4227,6 @@ expand_parallel_call (struct omp_region *region, basic_block bb, (cond != 0) or (cond ? val : 1u). */ if (cond) { - gimple_stmt_iterator gsi; - cond = gimple_boolify (cond); if (integer_zerop (val)) @@ -4672,7 +4670,6 @@ expand_omp_taskreg (struct omp_region *region) the region, in which case all we need to do is make the sub-graph unreachable and emit the parallel call. */ edge entry_succ_e, exit_succ_e; - gimple_stmt_iterator gsi; entry_succ_e = single_succ_edge (entry_bb); @@ -4709,7 +4706,6 @@ expand_omp_taskreg (struct omp_region *region) if (gimple_omp_taskreg_data_arg (entry_stmt)) { basic_block entry_succ_bb = single_succ (entry_bb); - gimple_stmt_iterator gsi; tree arg, narg; gimple parcopy_stmt = NULL; |