From: Christoph Mallon Date: Tue, 16 Sep 2008 10:34:41 +0000 (+0000) Subject: Fix comments. X-Git-Url: http://nsz.repo.hu/git/?a=commitdiff_plain;h=c601d487f2083ec7815a99bf1bf326c115391d12;p=libfirm Fix comments. [r21999] --- diff --git a/ir/opt/funccall.c b/ir/opt/funccall.c index da0a295df..7992636b6 100644 --- a/ir/opt/funccall.c +++ b/ir/opt/funccall.c @@ -171,8 +171,8 @@ static void fix_const_call_list(ir_graph *irg, ir_node *call_list, ir_node *proj current_ir_graph = irg; - /* First step: fix all calls by removing it's memory input. - It's original memory input is preserved in their link fields. */ + /* First step: fix all calls by removing their memory input. + * The original memory input is preserved in their link fields. */ for (call = call_list; call; call = next) { next = get_irn_link(call); mem = get_Call_mem(call); @@ -181,7 +181,7 @@ static void fix_const_call_list(ir_graph *irg, ir_node *call_list, ir_node *proj set_Call_mem(call, get_irg_no_mem(irg)); /* - * Sorrily we cannot simply set the node to 'float'. + * Unfortunately we cannot simply set the node to 'float'. * There is a reason for that: * * - The call might be inside a loop/if that is NOT entered