Fix regressions introduced by my previous patch: opt calls verifier in a

way that the "Mod" ivar was not getting set.


git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@36291 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Chris Lattner 2007-04-20 23:59:29 +00:00
parent 0d3b67809c
commit cd070759c4

View File

@ -113,7 +113,9 @@ namespace { // Anonymous namespace for class
bool runOnFunction(Function &F) {
// Get dominator information if we are being run by PassManager
if (RealPass) EF = &getAnalysis<ETForest>();
Mod = F.getParent();
visit(F);
InstsInThisBlock.clear();