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
c634f4ba
Commit
c634f4ba
authored
Apr 11, 2012
by
Xinliang David Li
Committed by
Xinliang David Li
Apr 11, 2012
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Remove TODO_dump_func completely
From-SVN: r186342
parent
ed6205b7
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
15 additions
and
12 deletions
+15
-12
gcc/ChangeLog
+7
-0
gcc/ira.c
+2
-2
gcc/trans-mem.c
+5
-7
gcc/tree-pass.h
+0
-1
gcc/tree-ssa-tail-merge.c
+1
-2
No files found.
gcc/ChangeLog
View file @
c634f4ba
2012-04-11 Xinliang David Li <davidxl@google.com>
* tree-passes.h: Remove TODO_dump_func.
* tree-ssa-tail-merge.c (tail_merge_optimize): Remove TODO_dump_func.
* trans-mem.c: Remove TODO_dump_func.
* ira.c: Remove TODO_dump_func.
2012-04-11 H.J. Lu <hongjiu.lu@intel.com>
* config/i386/i386.c (ix86_option_override_internal): Check
...
...
gcc/ira.c
View file @
c634f4ba
...
...
@@ -3814,7 +3814,7 @@ struct rtl_opt_pass pass_ira =
0
,
/* properties_provided */
0
,
/* properties_destroyed */
0
,
/* todo_flags_start */
TODO_dump_func
/* todo_flags_finish */
0
,
/* todo_flags_finish */
}
};
...
...
@@ -3840,6 +3840,6 @@ struct rtl_opt_pass pass_reload =
0
,
/* properties_provided */
0
,
/* properties_destroyed */
0
,
/* todo_flags_start */
TODO_
dump_func
|
TODO_ggc_collect
/* todo_flags_finish */
TODO_
ggc_collect
/* todo_flags_finish */
}
};
gcc/trans-mem.c
View file @
c634f4ba
...
...
@@ -1730,7 +1730,7 @@ struct gimple_opt_pass pass_lower_tm =
0
,
/* properties_provided */
0
,
/* properties_destroyed */
0
,
/* todo_flags_start */
TODO_dump_func
/* todo_flags_finish */
0
,
/* todo_flags_finish */
}
};
...
...
@@ -2543,8 +2543,7 @@ struct gimple_opt_pass pass_tm_mark =
0
,
/* properties_destroyed */
0
,
/* todo_flags_start */
TODO_update_ssa
|
TODO_verify_ssa
|
TODO_dump_func
,
/* todo_flags_finish */
|
TODO_verify_ssa
,
/* todo_flags_finish */
}
};
...
...
@@ -2818,8 +2817,7 @@ struct gimple_opt_pass pass_tm_edges =
0
,
/* properties_destroyed */
0
,
/* todo_flags_start */
TODO_update_ssa
|
TODO_verify_ssa
|
TODO_dump_func
,
/* todo_flags_finish */
|
TODO_verify_ssa
,
/* todo_flags_finish */
}
};
...
...
@@ -3483,7 +3481,7 @@ struct gimple_opt_pass pass_tm_memopt =
0
,
/* properties_provided */
0
,
/* properties_destroyed */
0
,
/* todo_flags_start */
TODO_dump_func
,
/* todo_flags_finish */
0
,
/* todo_flags_finish */
}
};
...
...
@@ -5035,7 +5033,7 @@ struct simple_ipa_opt_pass pass_ipa_tm =
0
,
/* properties_provided */
0
,
/* properties_destroyed */
0
,
/* todo_flags_start */
TODO_dump_func
,
/* todo_flags_finish */
0
,
/* todo_flags_finish */
},
};
...
...
gcc/tree-pass.h
View file @
c634f4ba
...
...
@@ -245,7 +245,6 @@ struct dump_file_info
(PROP_gimple_any | PROP_gimple_lcf | PROP_gimple_leh | PROP_gimple_lomp)
/* To-do flags. */
#define TODO_dump_func (1 << 0)
#define TODO_ggc_collect (1 << 1)
#define TODO_verify_ssa (1 << 2)
#define TODO_verify_flow (1 << 3)
...
...
gcc/tree-ssa-tail-merge.c
View file @
c634f4ba
...
...
@@ -1592,8 +1592,7 @@ tail_merge_optimize (unsigned int todo)
dump_function_to_file
(
current_function_decl
,
dump_file
,
dump_flags
);
}
todo
|=
(
TODO_verify_ssa
|
TODO_verify_stmts
|
TODO_verify_flow
|
TODO_dump_func
);
todo
|=
(
TODO_verify_ssa
|
TODO_verify_stmts
|
TODO_verify_flow
);
mark_sym_for_renaming
(
gimple_vop
(
cfun
));
}
...
...
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