Commit 01fba8d9 by Richard Henderson Committed by Richard Henderson

* lex.c (mark_impl_file_chain): Follow the next chain.

From-SVN: r29442
parent 1a4450c7
1999-09-15 Richard Henderson <rth@cygnus.com>
* lex.c (mark_impl_file_chain): Follow the next chain.
1999-09-15 Mark Mitchell <mark@codesourcery.com>
* decl2.c (build_expr_from_tree): Handle VA_ARG_EXPR.
......
......@@ -1129,8 +1129,11 @@ mark_impl_file_chain (arg)
struct impl_files *ifs;
ifs = *(struct impl_files **) arg;
if (ifs)
ggc_mark_string (ifs->filename);
while (ifs)
{
ggc_mark_string (ifs->filename);
ifs = ifs->next;
}
}
/* Helper function to load global variables with interface
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment