From: Chris Lattner Date: Sun, 23 Jan 2005 03:31:39 +0000 (+0000) Subject: Adjust to changed interface. X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=cf989fd2a37524995155b347ec52e90145618fd2;p=oota-llvm.git Adjust to changed interface. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@19772 91177308-0d34-0410-b5e6-96231b3b80d8 --- 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);