diff options
| author | Al Viro <viro@zeniv.linux.org.uk> | 2007-06-16 14:46:07 -0400 |
|---|---|---|
| committer | Al Viro <viro@zeniv.linux.org.uk> | 2007-06-18 03:01:09 -0400 |
| commit | 3174d3627021a6c23631142454d60f6b6d4bd1f2 (patch) | |
| tree | 67a7de438a1d1e24cc35be49b147a83ebd6ed1f5 | |
| parent | 0182393bcf7dbfdf7c17f2b204f790d627c7282a (diff) | |
| download | sparse-dev-3174d3627021a6c23631142454d60f6b6d4bd1f2.tar.gz | |
[PATCH] make copying of EXPR_INDEX non-lazy
preparation to initializer fixes
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
| -rw-r--r-- | inline.c | 2 |
1 files changed, 0 insertions, 2 deletions
@@ -218,8 +218,6 @@ static struct expression * copy_expression(struct expression *expr) case EXPR_INDEX: { struct expression *sub_expr = copy_expression(expr->idx_expression); - if (sub_expr == expr->idx_expression) - break; expr = dup_expression(expr); expr->idx_expression = sub_expr; break; |
