Remove redundant assignment of the source position.
authorChristoph Mallon <christoph.mallon@gmx.de>
Sun, 20 May 2012 06:03:21 +0000 (08:03 +0200)
committerChristoph Mallon <christoph.mallon@gmx.de>
Sun, 20 May 2012 06:03:21 +0000 (08:03 +0200)
parser.c

index 57b00ac..2509809 100644 (file)
--- a/parser.c
+++ b/parser.c
@@ -6527,7 +6527,6 @@ static expression_t *parse_compare_builtin(void)
        default: internal_errorf(HERE, "invalid compare builtin found");
        }
        expression_t *const expression = allocate_expression_zero(kind);
-       expression->base.source_position = *HERE;
        next_token();
 
        add_anchor_token(')');