summaryrefslogtreecommitdiff
path: root/gcc/dbxout.c
diff options
context:
space:
mode:
Diffstat (limited to 'gcc/dbxout.c')
-rw-r--r--gcc/dbxout.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/dbxout.c b/gcc/dbxout.c
index 6cb43411917..fc6b13b904a 100644
--- a/gcc/dbxout.c
+++ b/gcc/dbxout.c
@@ -2429,7 +2429,7 @@ dbxout_expand_expr (tree expr)
/* If this is a var that might not be actually output,
return NULL, otherwise stabs might reference an undefined
symbol. */
- varpool_node *node = varpool_get_node (expr);
+ varpool_node *node = varpool_node::get (expr);
if (!node || !node->definition)
return NULL;
}