diff options
author | bstarynk <bstarynk@138bc75d-0d04-0410-961f-82ee72b054a4> | 2009-03-25 15:13:25 +0000 |
---|---|---|
committer | bstarynk <bstarynk@138bc75d-0d04-0410-961f-82ee72b054a4> | 2009-03-25 15:13:25 +0000 |
commit | 18a2c293da3a27ff303a67ef7e610145e914e444 (patch) | |
tree | 0d68d47c3efd09f056898b183cdfed46a6e9ebd3 /gcc/cgraph.h | |
parent | be4beff1fd988b04b84bad1ce00d3e46fff51aab (diff) | |
download | gcc-18a2c293da3a27ff303a67ef7e610145e914e444.tar.gz |
2009-03-25 Basile Starynkevitch <basile@starynkevitch.net>
MELT branch merged with trunk r15061
* gcc/basilys.h: (ppl_Coefficient_t, ppl_Linear_Expression_t)
(ppl_Constraint_t, ppl_Constraint_System_t, ppl_Generator_t)
(ppl_Generator_System_t): typedef copied from <ppl_c.h>.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/branches/melt-branch@145063 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/cgraph.h')
-rw-r--r-- | gcc/cgraph.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/gcc/cgraph.h b/gcc/cgraph.h index 57d4772cdd5..29fc1ba4a4d 100644 --- a/gcc/cgraph.h +++ b/gcc/cgraph.h @@ -163,6 +163,10 @@ struct cgraph_node GTY((chain_next ("%h.next"), chain_prev ("%h.previous"))) /* 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; + /* Set when function must be output - it is externally visible or its address is taken. */ unsigned needed : 1; @@ -186,10 +190,6 @@ struct cgraph_node GTY((chain_next ("%h.next"), chain_prev ("%h.previous"))) into clone before compiling so the function in original form can be inlined later. This pointer points to the clone. */ tree inline_decl; - - /* unique id for profiling. pid is not suitable because of different - number of cfg nodes with -fprofile-generate and -fprofile-use */ - int pid; }; struct cgraph_edge GTY((chain_next ("%h.next_caller"), chain_prev ("%h.prev_caller"))) |