From: Michael Beck Date: Fri, 2 Jan 2009 17:45:38 +0000 (+0000) Subject: - typo fixed X-Git-Url: http://nsz.repo.hu/git/?a=commitdiff_plain;h=1f9b7045b67c4dbd921dbe9a37a7d360ee510d74;p=cparser - typo fixed [r25064] --- diff --git a/ast2firm.c b/ast2firm.c index 27c8220..b679fc8 100644 --- a/ast2firm.c +++ b/ast2firm.c @@ -3235,7 +3235,7 @@ static ir_node *va_start_expression_to_firm( ir_node *const c2 = new_d_Add(dbgi, cnst, c1, mode); ir_node *const c3 = new_Const_long(mode, -(long)stack_param_align); ir_node *const c4 = new_d_And(dbgi, c2, c3, mode); - ir_node *const add = new_d_Add(dbgi, arg_sel, c2, mode_P_data); + ir_node *const add = new_d_Add(dbgi, arg_sel, c4, mode_P_data); set_value_for_expression(expr->ap, add); return NULL;