Apply timeouts and memory limits in more places. In particular, when
[oota-llvm.git] / tools / bugpoint / ExecutionDriver.cpp
index 2eded1788d955c59d61c69a5b5eea938ebe19e88..57f12d5af8240d12716358aa1ebb829abdc47d72 100644 (file)
@@ -312,7 +312,7 @@ void BugDriver::compileProgram(Module *M, std::string *Error) {
   FileRemover BitcodeFileRemover(BitcodeFile, !SaveTemps);
 
   // Actually compile the program!
-  Interpreter->compileProgram(BitcodeFile.str(), Error);
+  Interpreter->compileProgram(BitcodeFile.str(), Error, Timeout, MemoryLimit);
 }