--- memops.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/memops.c b/memops.c index 501973788..294c89cbd 100644 --- a/memops.c +++ b/memops.c @@ -85,10 +85,11 @@ static void kill_store(struct instruction *insn) } } -static void kill_dominated_stores(struct basic_block *bb) +static void simplify_stores(struct basic_block *bb) { struct instruction *insn; + /* kill the dominated stores */ FOR_EACH_PTR_REVERSE(bb->insns, insn) { if (!insn->bb) continue; @@ -138,7 +139,7 @@ static void simplify_all_stores(struct entrypoint *ep) if (!fsimplify_stores) return; FOR_EACH_PTR_REVERSE(ep->bbs, bb) { - kill_dominated_stores(bb); + simplify_stores(bb); } END_FOR_EACH_PTR_REVERSE(bb); } -- 2.14.0 -- To unsubscribe from this list: send the line "unsubscribe linux-sparse" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html