summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBill Wendling <isanbard@gmail.com>2006-11-17 10:05:07 +0000
committerBill Wendling <isanbard@gmail.com>2006-11-17 10:05:07 +0000
commit31bf2b4979d82a45eca5b37efd3db601304e51e7 (patch)
tree56236aa628c4efddc1bee4aa21a354641246e181
parentab41c3e6b7520a84560113d84ea83c2d86b1eff7 (diff)
downloadllvm-31bf2b4979d82a45eca5b37efd3db601304e51e7.tar.gz
llvm-31bf2b4979d82a45eca5b37efd3db601304e51e7.tar.bz2
llvm-31bf2b4979d82a45eca5b37efd3db601304e51e7.tar.xz
Need iostream to be included for the time being.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@31820 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r--tools/opt/GraphPrinters.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/tools/opt/GraphPrinters.cpp b/tools/opt/GraphPrinters.cpp
index 8c0ef776c2..5e8a859443 100644
--- a/tools/opt/GraphPrinters.cpp
+++ b/tools/opt/GraphPrinters.cpp
@@ -18,6 +18,7 @@
#include "llvm/Pass.h"
#include "llvm/Value.h"
#include "llvm/Analysis/CallGraph.h"
+#include <iostream>
#include <fstream>
using namespace llvm;