From 4b5fb64e486836eac02880997e2e5962c543485e Mon Sep 17 00:00:00 2001 From: Christoph Mallon Date: Sun, 18 Nov 2007 06:53:38 +0000 Subject: [PATCH] Fix typos in comment. [r18474] --- ast2firm.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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); -- 2.20.1