summaryrefslogtreecommitdiffstats
path: root/llvm/tools/bugpoint/ExecutionDriver.cpp
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
commit411bbeeac72c4c53d9441cb4d3206ca7b56e7a88 (patch)
tree5089218bae519689f2a8fe098b3ff29332361bbb /llvm/tools/bugpoint/ExecutionDriver.cpp
parentb782187b32a6e760b61938cdd4d30d2344614de8 (diff)
downloadbcm5719-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.cpp3
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);
OpenPOWER on IntegriCloud