improve lcov to 100

This commit is contained in:
Yilou Wang 2026-04-07 22:19:31 +02:00
parent 610f4f1366
commit 987771dc87
1 changed files with 4 additions and 4 deletions

View File

@ -784,10 +784,10 @@ 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
return; // LCOV_EXCL_LINE
// LCOV_EXCL_START // Lowered before DFG
UASSERT_OBJ(false, this, "SAnd/SIntersect/SOr/SThroughout should be removed before DFG");
return;
// LCOV_EXCL_STOP
}
case VDfgType::LogAnd: