* objc-act.c: (mark_referenced_methods): Fix compilation problem.

From-SVN: r63478
This commit is contained in:
Jan Hubicka 2003-02-26 19:47:35 +01:00 committed by Jan Hubicka
parent cb9e4555c1
commit 47a5d8e7fe
2 changed files with 6 additions and 2 deletions

View File

@ -1,3 +1,7 @@
Wed Feb 26 19:46:25 CET 2003 Jan Hubicka <jh@suse.cz>
* objc-act.c: (mark_referenced_methods): Fix compilation problem.
2003-02-26 Zdenek Dvorak <rakdver@atrey.karlin.mff.cuni.cz>
* gcov-dump.c (print_prefix): Fix signedness warning.

View File

@ -4041,13 +4041,13 @@ mark_referenced_methods ()
chain = CLASS_CLS_METHODS (impent->imp_context);
while (chain)
{
cgraph_mark_needed_node (cgraph_node (METHOD_DEFINITION (chain)));
cgraph_mark_needed_node (cgraph_node (METHOD_DEFINITION (chain)), 1);
chain = TREE_CHAIN (chain);
}
chain = CLASS_NST_METHODS (impent->imp_context);
while (chain)
{
cgraph_mark_needed_node (cgraph_node (METHOD_DEFINITION (chain)));
cgraph_mark_needed_node (cgraph_node (METHOD_DEFINITION (chain)), 1);
chain = TREE_CHAIN (chain);
}
}