From cf989fd2a37524995155b347ec52e90145618fd2 Mon Sep 17 00:00:00 2001 From: Chris Lattner Date: Sun, 23 Jan 2005 03:31:39 +0000 Subject: [PATCH] Adjust to changed interface. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@19772 91177308-0d34-0410-b5e6-96231b3b80d8 --- tools/bugpoint/ExecutionDriver.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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); -- 2.11.0