From: Christoph Mallon Date: Sun, 18 Nov 2007 06:53:38 +0000 (+0000) Subject: Fix typos in comment. X-Git-Url: http://nsz.repo.hu/git/?a=commitdiff_plain;h=4b5fb64e486836eac02880997e2e5962c543485e;p=cparser Fix typos in comment. [r18474] --- diff --git a/ast2firm.c b/ast2firm.c index f1fc7e3..e100612 100644 --- a/ast2firm.c +++ b/ast2firm.c @@ -971,8 +971,8 @@ static ir_node *create_arithmetic_binop(const binary_expression_t *expression, ir_node *left = expression_to_firm(expression->left); ir_node *right = expression_to_firm(expression->right); type_t *type = expression->right->datatype; - /* be careful with the modes, because in asithmetic assign nodes only - * the right operand has the mode of the arithmetic alread */ + /* be careful with the modes, because in arithmetic assign nodes only + * the right operand has the mode of the arithmetic already */ ir_mode *mode = get_ir_mode(type); left = create_conv(dbgi, left, mode); ir_node *res = func(dbgi, left, right, mode);