aboutsummaryrefslogtreecommitdiff
path: root/gcc/cgraph.h
diff options
context:
space:
mode:
authorJan Hubicka <jh@suse.cz>2005-03-20 16:27:18 +0100
committerJan Hubicka <hubicka@gcc.gnu.org>2005-03-20 15:27:18 +0000
commit1655dc9de3ca6e8ef09648bf8bc73600910643c5 (patch)
tree9295919722e5f5a302f8ec2e11579c6b99f514ae /gcc/cgraph.h
parentf6d1c3a69b64edc2ff6d10d8ec89456552a5f3a8 (diff)
downloadgcc-1655dc9de3ca6e8ef09648bf8bc73600910643c5.zip
gcc-1655dc9de3ca6e8ef09648bf8bc73600910643c5.tar.gz
gcc-1655dc9de3ca6e8ef09648bf8bc73600910643c5.tar.bz2
cgraph.h (cgraph_node): Add prev_clone pointer.
* cgraph.h (cgraph_node): Add prev_clone pointer. * cgraph.c (cgraph_remove_node): Remove from doubly linked chain. (cgraph_clone_node): Produce doubly linked chain. From-SVN: r96761
Diffstat (limited to 'gcc/cgraph.h')
-rw-r--r--gcc/cgraph.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/gcc/cgraph.h b/gcc/cgraph.h
index b596a36..2a1c1b3 100644
--- a/gcc/cgraph.h
+++ b/gcc/cgraph.h
@@ -98,6 +98,7 @@ struct cgraph_node GTY((chain_next ("%h.next"), chain_prev ("%h.previous")))
struct cgraph_node *next_needed;
/* Pointer to the next clone. */
struct cgraph_node *next_clone;
+ struct cgraph_node *prev_clone;
PTR GTY ((skip)) aux;
struct cgraph_local_info local;