summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2005-01-23 03:31:39 +0000
committerChris Lattner <sabre@nondot.org>2005-01-23 03:31:39 +0000
commitcf989fd2a37524995155b347ec52e90145618fd2 (patch)
tree33df9cc2602710f0d5420f962b06b46bb9c72a9b
parentcc1b90b0e768478c2f7d62f7e1cbc95d8e6cb237 (diff)
Adjust to changed interface.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@19772 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r--tools/bugpoint/ExecutionDriver.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/tools/bugpoint/ExecutionDriver.cpp b/tools/bugpoint/ExecutionDriver.cpp
index 43017a6199e..1dcb69a1c88 100644
--- a/tools/bugpoint/ExecutionDriver.cpp
+++ b/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);