This commit is contained in:
ALEXks
2025-04-01 18:53:49 +03:00
committed by Egor Mayorov
parent 5f6bcdf974
commit c4f20df7fc
2 changed files with 5 additions and 3 deletions

View File

@@ -17,7 +17,6 @@
using namespace std;
#define DVMH_REG_RD 0
#define DVMH_REG_WT 1
@@ -1428,7 +1427,10 @@ static set<DIST::Array*>
for (auto& realArray : realRef)
{
if (added.count(realArray) != 0 || realArray->IsNotDistribute())
if (added.count(realArray) != 0)
continue;
if (!realArray->IsNotDistribute())
continue;
SgStatement* declStat = NULL;

View File

@@ -1,3 +1,3 @@
#pragma once
#define VERSION_SPF "2403"
#define VERSION_SPF "2404"