Adjust to changed interface.
authorChris Lattner <sabre@nondot.org>
Sun, 23 Jan 2005 03:31:39 +0000 (03:31 +0000)
committerChris Lattner <sabre@nondot.org>
Sun, 23 Jan 2005 03:31:39 +0000 (03:31 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@19772 91177308-0d34-0410-b5e6-96231b3b80d8

tools/bugpoint/ExecutionDriver.cpp

index 43017a6199e829238c4316ce37048ccff1d2c664..1dcb69a1c88ea1cecb245d984eb57a41a8ad4136 100644 (file)
@@ -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);