forked from OSchip/llvm-project
Fix an obvious bug in the refactoring I did a few days ago
llvm-svn: 12797
This commit is contained in:
parent
8ffe3e0b72
commit
5bcb4eb13c
|
@ -347,7 +347,7 @@ static bool TestOptimizer(BugDriver &BD, Module *Test, Module *Safe) {
|
|||
delete Test;
|
||||
|
||||
std::cout << " Checking to see if the merged program executes correctly: ";
|
||||
bool Broken = TestMergedProgram(BD, Test, Safe, true);
|
||||
bool Broken = TestMergedProgram(BD, Optimized, Safe, true);
|
||||
std::cout << (Broken ? " nope.\n" : " yup.\n");
|
||||
return Broken;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue