mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-01-08 18:31:23 +00:00
Fix typo in assertion check.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@37864 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
93888428d4
commit
dc42bc3baf
@ -155,7 +155,7 @@ protected:
|
||||
DomTreeNode *N = getNode(BB);
|
||||
assert (N && "Missing dominator tree node");
|
||||
DomTreeNode *I = N->getIDom();
|
||||
assert (N && "Missing immediate dominator");
|
||||
assert (I && "Missing immediate dominator");
|
||||
return I->getBlock();
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user