From e0d7beda692305ec051349a155bbde46a8713b37 Mon Sep 17 00:00:00 2001 From: Quentin Carbonneaux Date: Fri, 23 Oct 2015 16:57:26 -0400 Subject: [PATCH] fix typo bug in liveness --- lisc/live.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lisc/live.c b/lisc/live.c index ea6414d..ddb1e31 100644 --- a/lisc/live.c +++ b/lisc/live.c @@ -92,7 +92,7 @@ Again: bset(ma->index, b, &nlv); break; default: - bset(i->arg[0], b, &nlv); + bset(i->arg[m], b, &nlv); break; } if (nlv > b->nlive)