diff options
author | Xinliang David Li <davidxl@google.com> | 2011-04-22 00:03:41 +0000 |
---|---|---|
committer | Xinliang David Li <davidxl@gcc.gnu.org> | 2011-04-22 00:03:41 +0000 |
commit | 903d1e67c4c6a102fb932a1c3dde084248a8dabf (patch) | |
tree | b1de1237c40a1783f8ec27a4d0b43d7764263cf2 /gcc/cgraph.h | |
parent | 7378e95ff1863346c11ac486189dde1eaa56a794 (diff) | |
download | gcc-903d1e67c4c6a102fb932a1c3dde084248a8dabf.zip gcc-903d1e67c4c6a102fb932a1c3dde084248a8dabf.tar.gz gcc-903d1e67c4c6a102fb932a1c3dde084248a8dabf.tar.bz2 |
Remove cgraph pid
From-SVN: r172848
Diffstat (limited to 'gcc/cgraph.h')
-rw-r--r-- | gcc/cgraph.h | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/gcc/cgraph.h b/gcc/cgraph.h index 032c837..b57a5e0 100644 --- a/gcc/cgraph.h +++ b/gcc/cgraph.h @@ -200,9 +200,6 @@ struct GTY((chain_next ("%h.next"), chain_prev ("%h.previous"))) cgraph_node { /* Ordering of all cgraph nodes. */ int order; - /* unique id for profiling. pid is not suitable because of different - number of cfg nodes with -fprofile-generate and -fprofile-use */ - int pid; enum ld_plugin_symbol_resolution resolution; /* Set when function must be output for some reason. The primary @@ -472,7 +469,6 @@ extern GTY(()) struct cgraph_node *cgraph_nodes; extern GTY(()) int cgraph_n_nodes; extern GTY(()) int cgraph_max_uid; extern GTY(()) int cgraph_edge_max_uid; -extern GTY(()) int cgraph_max_pid; extern bool cgraph_global_info_ready; enum cgraph_state { @@ -730,7 +726,6 @@ void cgraph_clone_inlined_nodes (struct cgraph_edge *, bool, bool); void compute_inline_parameters (struct cgraph_node *); cgraph_inline_failed_t cgraph_edge_inlinable_p (struct cgraph_edge *); - /* Create a new static variable of type TYPE. */ tree add_new_static_var (tree type); |