From a62bfab5d2a332925fcf10c45b4c5d8ca499439d Mon Sep 17 00:00:00 2001 From: Martin Liska Date: Wed, 30 Oct 2019 07:55:39 +0000 Subject: Remove cgraph_global_info. From-SVN: r277600 --- gcc/ipa-comdats.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'gcc/ipa-comdats.c') diff --git a/gcc/ipa-comdats.c b/gcc/ipa-comdats.c index 69cc3f3..b496497 100644 --- a/gcc/ipa-comdats.c +++ b/gcc/ipa-comdats.c @@ -98,8 +98,8 @@ propagate_comdat_group (struct symtab_node *symbol, if (cgraph_node * cn = dyn_cast (symbol2)) { - if (cn->global.inlined_to) - symbol2 = cn->global.inlined_to; + if (cn->inlined_to) + symbol2 = cn->inlined_to; } /* The actual merge operation. */ @@ -133,8 +133,8 @@ propagate_comdat_group (struct symtab_node *symbol, /* If we see inline clone, its comdat group actually corresponds to the comdat group of the function it is inlined to. */ - if (cn->global.inlined_to) - symbol2 = cn->global.inlined_to; + if (cn->inlined_to) + symbol2 = cn->inlined_to; } /* The actual merge operation. */ -- cgit v1.1