Commentary

This commit is contained in:
Wilson Snyder 2025-12-21 18:55:51 -05:00
parent 4201450a8a
commit 1d7f5ed33e
1 changed files with 2 additions and 1 deletions

View File

@ -58,7 +58,8 @@ private:
if (VN_IS(dtypep, PackArrayDType)) return true;
if (VN_IS(dtypep, UnpackArrayDType)) return isSupportedDType(dtypep->subDTypep());
if (VN_IS(dtypep, NodeUOrStructDType)) return true; // All are packed at the moment
if (VN_IS(dtypep, ClassRefDType)) return true; // IEEE: reference change, not contents
// Per IEEE, detects reference object pointer changes, not contents of the class changes
if (VN_IS(dtypep, ClassRefDType)) return true;
return false;
}