diff options
author | Chris Lattner <sabre@nondot.org> | 2005-01-23 03:31:39 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2005-01-23 03:31:39 +0000 |
commit | 411bbeeac72c4c53d9441cb4d3206ca7b56e7a88 (patch) | |
tree | 5089218bae519689f2a8fe098b3ff29332361bbb /llvm/tools/bugpoint/ExecutionDriver.cpp | |
parent | b782187b32a6e760b61938cdd4d30d2344614de8 (diff) | |
download | bcm5719-llvm-411bbeeac72c4c53d9441cb4d3206ca7b56e7a88.tar.gz bcm5719-llvm-411bbeeac72c4c53d9441cb4d3206ca7b56e7a88.zip |
Adjust to changed interface.
llvm-svn: 19772
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); |