diff options
Diffstat (limited to 'llvm/tools/bugpoint/ExecutionDriver.cpp')
-rw-r--r-- | llvm/tools/bugpoint/ExecutionDriver.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/llvm/tools/bugpoint/ExecutionDriver.cpp b/llvm/tools/bugpoint/ExecutionDriver.cpp index 43017a6199e..1dcb69a1c88 100644 --- a/llvm/tools/bugpoint/ExecutionDriver.cpp +++ b/llvm/tools/bugpoint/ExecutionDriver.cpp @@ -303,7 +303,8 @@ bool BugDriver::diffProgram(const std::string &BytecodeFile, std::string Error; bool FilesDifferent = false; - if (DiffFiles(ReferenceOutputFile, Output.toString(), &Error)) { + if (DiffFilesWithTolerance(ReferenceOutputFile, Output.toString(), 0, 0, + &Error)) { if (!Error.empty()) { std::cerr << "While diffing output: " << Error << '\n'; exit(1); |