diff options
Diffstat (limited to 'gcc/cgraph.c')
-rw-r--r-- | gcc/cgraph.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/cgraph.c b/gcc/cgraph.c index be3661a..ee192ed 100644 --- a/gcc/cgraph.c +++ b/gcc/cgraph.c @@ -674,7 +674,7 @@ cgraph_node_for_asm (tree asmname) node; node = node->next_sharing_asm_name) { - cgraph_node *cn = dyn_cast <cgraph_node> (node); + cgraph_node *cn = dyn_cast <cgraph_node *> (node); if (cn && !cn->global.inlined_to) return cn; } |