aboutsummaryrefslogtreecommitdiff
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 ad1533e..6205472 100644
--- a/gcc/dbxout.c
+++ b/gcc/dbxout.c
@@ -2481,7 +2481,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. */
- struct varpool_node *node = varpool_get_node (expr);
+ varpool_node *node = varpool_get_node (expr);
if (!node || !node->definition)
return NULL;
}