Apply 'make format'

This commit is contained in:
github action 2026-04-07 15:44:47 +00:00
parent 2933ea0a18
commit 54066db2ba
1 changed files with 3 additions and 2 deletions

View File

@ -784,8 +784,9 @@ void DfgVertex::typeCheck(const DfgGraph& dfg) const {
case VDfgType::SIntersect:
case VDfgType::SOr:
case VDfgType::SThroughout: {
UASSERT_OBJ(false, this, // LCOV_EXCL_LINE
"SAnd/SIntersect/SOr/SThroughout should be removed before DFG"); // LCOV_EXCL_LINE
UASSERT_OBJ(
false, this, // LCOV_EXCL_LINE
"SAnd/SIntersect/SOr/SThroughout should be removed before DFG"); // LCOV_EXCL_LINE
return; // LCOV_EXCL_LINE
}