1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-11-24 11:42:57 +01:00

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

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

llvm-svn: 36291
This commit is contained in:
Chris Lattner 2007-04-20 23:59:29 +00:00
parent a6bb7b3907
commit 1907945816

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();