aboutsummaryrefslogtreecommitdiffstats
path: root/tools
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2002-12-24 00:44:34 +0000
committerChris Lattner <sabre@nondot.org>2002-12-24 00:44:34 +0000
commite1b52b765675015eee5ce9efdb1b81c6c3eaefb1 (patch)
tree812315d2dd05c20b1852c718761e80e3f243fd53 /tools
parent4fcfc12daba974047f7c352c30d0d5c4f67e87a6 (diff)
downloadexternal_llvm-e1b52b765675015eee5ce9efdb1b81c6c3eaefb1.zip
external_llvm-e1b52b765675015eee5ce9efdb1b81c6c3eaefb1.tar.gz
external_llvm-e1b52b765675015eee5ce9efdb1b81c6c3eaefb1.tar.bz2
Fix compilation on GCC 3.2
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@5136 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'tools')
-rw-r--r--tools/bugpoint/ExecutionDriver.cpp1
-rw-r--r--tools/bugpoint/SystemUtils.cpp1
2 files changed, 2 insertions, 0 deletions
diff --git a/tools/bugpoint/ExecutionDriver.cpp b/tools/bugpoint/ExecutionDriver.cpp
index 913fee8..1445f1e 100644
--- a/tools/bugpoint/ExecutionDriver.cpp
+++ b/tools/bugpoint/ExecutionDriver.cpp
@@ -18,6 +18,7 @@ BUGPOINT NOTES:
#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
diff --git a/tools/bugpoint/SystemUtils.cpp b/tools/bugpoint/SystemUtils.cpp
index 5483f80..98b2fc6 100644
--- a/tools/bugpoint/SystemUtils.cpp
+++ b/tools/bugpoint/SystemUtils.cpp
@@ -8,6 +8,7 @@
#include "SystemUtils.h"
#include <algorithm>
#include <fstream>
+#include <iostream>
#include <stdlib.h>
#include <sys/types.h>
#include <sys/stat.h>