From 797aeee5d7f0ca5537ca2e53e3c9261ef165f68d Mon Sep 17 00:00:00 2001 From: Alan Mishchenko Date: Tue, 5 Mar 2019 21:59:43 -0800 Subject: Updating canonical form computation procedures (compiler warnings). --- src/opt/dau/dauCanon.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/opt/dau') diff --git a/src/opt/dau/dauCanon.c b/src/opt/dau/dauCanon.c index b93521d0..a5558c1e 100644 --- a/src/opt/dau/dauCanon.c +++ b/src/opt/dau/dauCanon.c @@ -2381,7 +2381,7 @@ static void Abc_TgReorderFGrps(Abc_TgMan_t * pMan) for (i = 0; i < n; i++) { char iv = pMan->pPerm[i]; - for (j = i; j > 0 && pMan->symPhase[(int)pFGrps[j - 1]] > pMan->symPhase[iv]; j--) + for (j = i; j > 0 && pMan->symPhase[(int)pFGrps[j - 1]] > pMan->symPhase[(int)iv]; j--) pFGrps[j] = pFGrps[j - 1]; pFGrps[j] = iv; } -- cgit v1.2.3