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
7fb1d021
Commit
7fb1d021
authored
Apr 29, 2019
by
Jeff Law
Committed by
Jeff Law
Apr 29, 2019
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* passes.def: Move -Wrestrict pass after copy propagation.
From-SVN: r270662
parent
856f73d1
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.def
+1
-1
No files found.
gcc/ChangeLog
View file @
7fb1d021
2019-04-29 Jeff Law <law@redhat.com>
* passes.def: Move -Wrestrict pass after copy propagation.
2019-04-29 Maya Rashish <coypu@sdf.org>
2019-04-29 Maya Rashish <coypu@sdf.org>
* config.gcc (default_gnu_indirect_function): Default to yes
* config.gcc (default_gnu_indirect_function): Default to yes
...
...
gcc/passes.def
View file @
7fb1d021
...
@@ -315,10 +315,10 @@ along with GCC; see the file COPYING3. If not see
...
@@ -315,10 +315,10 @@ along with GCC; see the file COPYING3. If not see
NEXT_PASS (pass_strlen);
NEXT_PASS (pass_strlen);
NEXT_PASS (pass_thread_jumps);
NEXT_PASS (pass_thread_jumps);
NEXT_PASS (pass_vrp, false /* warn_array_bounds_p */);
NEXT_PASS (pass_vrp, false /* warn_array_bounds_p */);
NEXT_PASS (pass_warn_restrict);
/* Threading can leave many const/copy propagations in the IL.
/* Threading can leave many const/copy propagations in the IL.
Clean them up. */
Clean them up. */
NEXT_PASS (pass_copy_prop);
NEXT_PASS (pass_copy_prop);
NEXT_PASS (pass_warn_restrict);
NEXT_PASS (pass_dse);
NEXT_PASS (pass_dse);
NEXT_PASS (pass_cd_dce);
NEXT_PASS (pass_cd_dce);
NEXT_PASS (pass_forwprop);
NEXT_PASS (pass_forwprop);
...
...
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