[llvm-commits] CVS: llvm/tools/bugpoint/ExecutionDriver.cpp SystemUtils.cpp
Chris Lattner
lattner at cs.uiuc.edu
Mon Dec 23 18:45:03 PST 2002
Changes in directory llvm/tools/bugpoint:
ExecutionDriver.cpp updated: 1.1 -> 1.2
SystemUtils.cpp updated: 1.1 -> 1.2
---
Log message:
Fix compilation on GCC 3.2
---
Diffs of the changes:
Index: llvm/tools/bugpoint/ExecutionDriver.cpp
diff -u llvm/tools/bugpoint/ExecutionDriver.cpp:1.1 llvm/tools/bugpoint/ExecutionDriver.cpp:1.2
--- llvm/tools/bugpoint/ExecutionDriver.cpp:1.1 Mon Dec 23 17:50:16 2002
+++ llvm/tools/bugpoint/ExecutionDriver.cpp Mon Dec 23 18:44:34 2002
@@ -18,6 +18,7 @@
#include "SystemUtils.h"
#include "Support/CommandLine.h"
#include <fstream>
+#include <iostream>
namespace {
// OutputType - Allow the user to specify the way code should be run, to test
Index: llvm/tools/bugpoint/SystemUtils.cpp
diff -u llvm/tools/bugpoint/SystemUtils.cpp:1.1 llvm/tools/bugpoint/SystemUtils.cpp:1.2
--- llvm/tools/bugpoint/SystemUtils.cpp:1.1 Mon Dec 23 17:50:16 2002
+++ llvm/tools/bugpoint/SystemUtils.cpp Mon Dec 23 18:44:34 2002
@@ -8,6 +8,7 @@
#include "SystemUtils.h"
#include <algorithm>
#include <fstream>
+#include <iostream>
#include <stdlib.h>
#include <sys/types.h>
#include <sys/stat.h>
More information about the llvm-commits
mailing list