From bd4d1f2938ee0df13f541e66f8d33156c01559c2 Mon Sep 17 00:00:00 2001 From: Fred Chow Date: Mon, 1 Nov 2021 01:15:35 -0700 Subject: [PATCH] Fixed a typo in deptest phase doing lampert test --- src/mapleall/maple_me/src/lfo_dep_test.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/mapleall/maple_me/src/lfo_dep_test.cpp b/src/mapleall/maple_me/src/lfo_dep_test.cpp index ac06708ed8..7c3c50cd30 100644 --- a/src/mapleall/maple_me/src/lfo_dep_test.cpp +++ b/src/mapleall/maple_me/src/lfo_dep_test.cpp @@ -423,7 +423,7 @@ void DoloopInfo::TestDependences(MapleVector *depTestList, bool bot } else { arrDesc2 = rhsArrays[testPair->depTestPair.second]; } - if (arrDesc1->subscriptVec.size() == arrDesc2->subscriptVec.size()) { + if (arrDesc1->subscriptVec.size() != arrDesc2->subscriptVec.size()) { testPair->dependent = true; testPair->unknownDist = true; continue; -- Gitee