summaryrefslogtreecommitdiff
path: root/gcc/cgraph.h
diff options
context:
space:
mode:
authorhubicka <hubicka@138bc75d-0d04-0410-961f-82ee72b054a4>2005-03-20 15:27:18 +0000
committerhubicka <hubicka@138bc75d-0d04-0410-961f-82ee72b054a4>2005-03-20 15:27:18 +0000
commit113a8828735449dffb3f9e2dbac00ae4235b68d2 (patch)
tree9295919722e5f5a302f8ec2e11579c6b99f514ae /gcc/cgraph.h
parent67409385de6e36bd5b6bd23d81adbf06b3cd12ad (diff)
downloadgcc-113a8828735449dffb3f9e2dbac00ae4235b68d2.tar.gz
* 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. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@96761 138bc75d-0d04-0410-961f-82ee72b054a4
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 b596a36a223..2a1c1b3b949 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;