Fix regressions introduced by my previous patch: opt calls verifier in a
authorChris Lattner <sabre@nondot.org>
Fri, 20 Apr 2007 23:59:29 +0000 (23:59 +0000)
committerChris Lattner <sabre@nondot.org>
Fri, 20 Apr 2007 23:59:29 +0000 (23:59 +0000)
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

lib/VMCore/Verifier.cpp

index c0a0dc6e6997a7fef361c9b4c686a157298fd917..19367662d2218a5564daaa8af121bf7f2bfba89f 100644 (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();