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
cf400ddb
Commit
cf400ddb
authored
Jul 07, 2009
by
Duncan Sands
Committed by
Duncan Sands
Jul 07, 2009
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Give names to some currently nameless passes (this
is useful for referring to them from plugins). From-SVN: r149331
parent
d575725b
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
9 additions
and
3 deletions
+9
-3
gcc/ChangeLog
+6
-0
gcc/final.c
+1
-1
gcc/passes.c
+1
-1
gcc/tree-optimize.c
+1
-1
No files found.
gcc/ChangeLog
View file @
cf400ddb
2009-07-07 Duncan Sands <baldrick@free.fr>
* final.c (pass_clean_state): Give the pass a name.
* passes.c (pass_rest_of_compilation): Likewise.
* tree-optimize.c (pass_all_optimizations): Likewise.
2009-07-07 H.J. Lu <hongjiu.lu@intel.com>
2009-07-07 H.J. Lu <hongjiu.lu@intel.com>
* config/ia64/ia64.c (ia64_handle_model_attribute): Remove
* config/ia64/ia64.c (ia64_handle_model_attribute): Remove
...
...
gcc/final.c
View file @
cf400ddb
...
@@ -4451,7 +4451,7 @@ struct rtl_opt_pass pass_clean_state =
...
@@ -4451,7 +4451,7 @@ struct rtl_opt_pass pass_clean_state =
{
{
{
{
RTL_PASS
,
RTL_PASS
,
NULL
,
/* name */
"*clean_state"
,
/* name */
NULL
,
/* gate */
NULL
,
/* gate */
rest_of_clean_state
,
/* execute */
rest_of_clean_state
,
/* execute */
NULL
,
/* sub */
NULL
,
/* sub */
...
...
gcc/passes.c
View file @
cf400ddb
...
@@ -288,7 +288,7 @@ struct gimple_opt_pass pass_rest_of_compilation =
...
@@ -288,7 +288,7 @@ struct gimple_opt_pass pass_rest_of_compilation =
{
{
{
{
GIMPLE_PASS
,
GIMPLE_PASS
,
NULL
,
/* name */
"*rest_of_compilation"
,
/* name */
gate_rest_of_compilation
,
/* gate */
gate_rest_of_compilation
,
/* gate */
NULL
,
/* execute */
NULL
,
/* execute */
NULL
,
/* sub */
NULL
,
/* sub */
...
...
gcc/tree-optimize.c
View file @
cf400ddb
...
@@ -66,7 +66,7 @@ struct gimple_opt_pass pass_all_optimizations =
...
@@ -66,7 +66,7 @@ struct gimple_opt_pass pass_all_optimizations =
{
{
{
{
GIMPLE_PASS
,
GIMPLE_PASS
,
NULL
,
/* name */
"*all_optimizations"
,
/* name */
gate_all_optimizations
,
/* gate */
gate_all_optimizations
,
/* gate */
NULL
,
/* execute */
NULL
,
/* execute */
NULL
,
/* sub */
NULL
,
/* sub */
...
...
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