aboutsummaryrefslogtreecommitdiff
path: root/gcc/cgraph.h
diff options
context:
space:
mode:
Diffstat (limited to 'gcc/cgraph.h')
-rw-r--r--gcc/cgraph.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/gcc/cgraph.h b/gcc/cgraph.h
index 1080c44..8772ceb 100644
--- a/gcc/cgraph.h
+++ b/gcc/cgraph.h
@@ -227,8 +227,9 @@ struct GTY((chain_next ("%h.next"), chain_prev ("%h.previous"))) cgraph_node {
to the edge to speed up cgraph_edge function. */
htab_t GTY((param_is (struct cgraph_edge))) call_site_hash;
#ifdef ENABLE_CHECKING
- /* Declaration node used to be clone of. Used for checking only. */
- tree former_clone_of;
+ /* Declaration node used to be clone of. Used for checking only.
+ We must skip it or we get references from release checking GGC files. */
+ tree GTY ((skip)) former_clone_of;
#endif
PTR GTY ((skip)) aux;