Signed-off-by: Luc Van Oostenryck <luc.vanoostenryck@xxxxxxxxx> --- simplify.c | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/simplify.c b/simplify.c index ced63bfa3..d4e730894 100644 --- a/simplify.c +++ b/simplify.c @@ -182,6 +182,16 @@ void kill_use(pseudo_t *usep) } } +static void kill_use_list(struct pseudo_list *list) +{ + pseudo_t p; + FOR_EACH_PTR(list, p) { + if (p == VOID) + continue; + kill_use(THIS_ADDRESS(p)); + } END_FOR_EACH_PTR(p); +} + void kill_instruction(struct instruction *insn) { if (!insn || !insn->bb) -- 2.11.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