Commit 8f45033b authored by rguenth's avatar rguenth
Browse files

2005-12-01 Richard Guenther <rguenther@suse.de>

        * tree-ssa-forwprop.c (forward_propagate_addr_expr): Fix
        thinko in last patch.


git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@107814 138bc75d-0d04-0410-961f-82ee72b054a4
parent a0d152c7
2005-12-01 Richard Guenther <rguenther@suse.de>
* tree-ssa-forwprop.c (forward_propagate_addr_expr): Fix
thinko in last patch.
2005-12-01 Geoffrey Keating <geoffk@apple.com>
* config/t-slibgcc-darwin (SHLIB_LINK): Use -single_module rather
......
......@@ -697,7 +697,7 @@ forward_propagate_addr_expr (tree stmt)
continue;
}
all = all && forward_propagate_addr_expr_1 (stmt, use_stmt);
all = forward_propagate_addr_expr_1 (stmt, use_stmt) && all;
}
return all;
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment