Fixed Chris' typo.

llvm-svn: 11128
This commit is contained in:
Tanya Lattner 2004-02-05 04:45:21 +00:00
parent f127d9cf33
commit cb435541c4
1 changed files with 1 additions and 1 deletions

View File

@ -266,7 +266,7 @@ bool LoadVN::haveEqualValueNumber(LoadInst *L1, LoadInst *L2,
return true;
} else {
// If we know that the downward scan found a modifier, return false.
assert(DownIt != B->end() && "Didn't find instructions??");
assert(DownIt != BB->end() && "Didn't find instructions??");
if (!NoModifiesDown) return false;
// Otherwise, continue the scan looking for a modifier or L2.