aboutsummaryrefslogtreecommitdiff
path: root/gcc/gimple-ssa.h
diff options
context:
space:
mode:
authorRichard Biener <rguenther@suse.de>2015-12-17 10:15:03 +0000
committerRichard Biener <rguenth@gcc.gnu.org>2015-12-17 10:15:03 +0000
commit38fc3edcb9397eb37ce98ceee210eac823e6a92c (patch)
tree5ef07d00f483b91ad4a3c69b08293bfc2f56889d /gcc/gimple-ssa.h
parent01704e5ad985b1f79c2d02dc59ccf94d5af2c5da (diff)
downloadgcc-38fc3edcb9397eb37ce98ceee210eac823e6a92c.zip
gcc-38fc3edcb9397eb37ce98ceee210eac823e6a92c.tar.gz
gcc-38fc3edcb9397eb37ce98ceee210eac823e6a92c.tar.bz2
gimple-ssa.h (struct gimple_df): Remove modified_noreturn_calls field.
2015-12-17 Richard Biener <rguenther@suse.de> * gimple-ssa.h (struct gimple_df): Remove modified_noreturn_calls field. * tree-ssa.c (delete_tree_ssa): Do not zero it. From-SVN: r231751
Diffstat (limited to 'gcc/gimple-ssa.h')
-rw-r--r--gcc/gimple-ssa.h10
1 files changed, 3 insertions, 7 deletions
diff --git a/gcc/gimple-ssa.h b/gcc/gimple-ssa.h
index 39551da..3fd3b6b 100644
--- a/gcc/gimple-ssa.h
+++ b/gcc/gimple-ssa.h
@@ -44,6 +44,9 @@ struct tm_restart_hasher : ggc_ptr_hash<tm_restart_node>
}
};
+extern void gt_ggc_mx (gimple *&);
+extern void gt_pch_nx (gimple *&);
+
struct ssa_name_hasher : ggc_ptr_hash<tree_node>
{
/* Hash a tree in a uid_decl_map. */
@@ -67,13 +70,6 @@ struct ssa_name_hasher : ggc_ptr_hash<tree_node>
gimple_ accessor defined, all publicly modifiable fields should have
gimple_set accessor. */
struct GTY(()) gimple_df {
- /* A vector of all the noreturn calls passed to modify_stmt.
- cleanup_control_flow uses it to detect cases where a mid-block
- indirect call has been turned into a noreturn call. When this
- happens, all the instructions after the call are no longer
- reachable and must be deleted as dead. */
- vec<gimple *, va_gc> *modified_noreturn_calls;
-
/* Array of all SSA_NAMEs used in the function. */
vec<tree, va_gc> *ssa_names;