[MSSA] Fix expensive checks build

This commit is contained in:
Nikita Popov 2022-08-01 07:28:36 +02:00
parent 62ec8e94b8
commit 34683c3e35
1 changed files with 1 additions and 2 deletions

View File

@ -450,8 +450,7 @@ checkClobberSanity(const MemoryAccess *Start, MemoryAccess *ClobberAt,
if (MD == Start)
continue;
assert(!instructionClobbersQuery(MD, MAP.second, Query.Inst, AA)
.IsClobber &&
assert(!instructionClobbersQuery(MD, MAP.second, Query.Inst, AA) &&
"Found clobber before reaching ClobberAt!");
continue;
}