diff options
author | Reid Spencer <rspencer@reidspencer.com> | 2004-07-04 12:20:55 +0000 |
---|---|---|
committer | Reid Spencer <rspencer@reidspencer.com> | 2004-07-04 12:20:55 +0000 |
commit | 86f42bdad93677fa0ca33b27afb0f493028376cb (patch) | |
tree | 0ab8d257cc81ea84ffe9a5c82fca813d1d71e7aa /tools/bugpoint | |
parent | 954da37bb492b519f5c31dc360f2a142567e08b4 (diff) | |
download | external_llvm-86f42bdad93677fa0ca33b27afb0f493028376cb.zip external_llvm-86f42bdad93677fa0ca33b27afb0f493028376cb.tar.gz external_llvm-86f42bdad93677fa0ca33b27afb0f493028376cb.tar.bz2 |
Add #include <iostream> since Value.h does not include it any more.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@14623 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'tools/bugpoint')
-rw-r--r-- | tools/bugpoint/BugDriver.cpp | 2 | ||||
-rw-r--r-- | tools/bugpoint/ExtractFunction.cpp | 1 |
2 files changed, 3 insertions, 0 deletions
diff --git a/tools/bugpoint/BugDriver.cpp b/tools/bugpoint/BugDriver.cpp index ed947c8..ee602b3 100644 --- a/tools/bugpoint/BugDriver.cpp +++ b/tools/bugpoint/BugDriver.cpp @@ -22,7 +22,9 @@ #include "llvm/Support/ToolRunner.h" #include "Support/CommandLine.h" #include "Support/FileUtilities.h" +#include <iostream> #include <memory> + using namespace llvm; // Anonymous namespace to define command line options for debugging. diff --git a/tools/bugpoint/ExtractFunction.cpp b/tools/bugpoint/ExtractFunction.cpp index ecc2652..0f3d44e 100644 --- a/tools/bugpoint/ExtractFunction.cpp +++ b/tools/bugpoint/ExtractFunction.cpp @@ -27,6 +27,7 @@ #include "Support/CommandLine.h" #include "Support/Debug.h" #include "Support/FileUtilities.h" +#include <iostream> #include <set> using namespace llvm; |