[llvm-commits] CVS: llvm/tools/bugpoint/ExecutionDriver.cpp
Chris Lattner
lattner at cs.uiuc.edu
Sat Jan 22 19:31:52 PST 2005
Changes in directory llvm/tools/bugpoint:
ExecutionDriver.cpp updated: 1.51 -> 1.52
---
Log message:
Adjust to changed interface.
---
Diffs of the changes: (+2 -1)
ExecutionDriver.cpp | 3 ++-
1 files changed, 2 insertions(+), 1 deletion(-)
Index: llvm/tools/bugpoint/ExecutionDriver.cpp
diff -u llvm/tools/bugpoint/ExecutionDriver.cpp:1.51 llvm/tools/bugpoint/ExecutionDriver.cpp:1.52
--- llvm/tools/bugpoint/ExecutionDriver.cpp:1.51 Wed Dec 22 16:33:33 2004
+++ llvm/tools/bugpoint/ExecutionDriver.cpp Sat Jan 22 21:31:39 2005
@@ -303,7 +303,8 @@
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);
More information about the llvm-commits
mailing list