Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
R
riscv-gcc-1
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
lvzhengyang
riscv-gcc-1
Commits
182802ad
Commit
182802ad
authored
May 29, 2013
by
Jan Hubicka
Committed by
Jan Hubicka
May 29, 2013
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* passes.c (init_optimization_passes): Move OMP expansion into lowering.
From-SVN: r199419
parent
8190b609
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
5 additions
and
1 deletions
+5
-1
gcc/ChangeLog
+4
-0
gcc/passes.c
+1
-1
No files found.
gcc/ChangeLog
View file @
182802ad
2013-05-29 Jan Hubicka <jh@suse.cz>
* passes.c (init_optimization_passes): Move OMP expansion into lowering.
2013-05-29 Easwaran Raman <eraman@google.com>
PR tree-optimization/57442
...
...
gcc/passes.c
View file @
182802ad
...
...
@@ -1300,6 +1300,7 @@ init_optimization_passes (void)
NEXT_PASS
(
pass_lower_eh
);
NEXT_PASS
(
pass_build_cfg
);
NEXT_PASS
(
pass_warn_function_return
);
NEXT_PASS
(
pass_expand_omp
);
NEXT_PASS
(
pass_build_cgraph_edges
);
*
p
=
NULL
;
...
...
@@ -1312,7 +1313,6 @@ init_optimization_passes (void)
struct
opt_pass
**
p
=
&
pass_early_local_passes
.
pass
.
sub
;
NEXT_PASS
(
pass_fixup_cfg
);
NEXT_PASS
(
pass_init_datastructures
);
NEXT_PASS
(
pass_expand_omp
);
NEXT_PASS
(
pass_build_ssa
);
NEXT_PASS
(
pass_early_warn_uninitialized
);
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment