summaryrefslogtreecommitdiff
path: root/include/llvm/Support/GraphWriter.h
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2002-10-27 19:12:37 +0000
committerChris Lattner <sabre@nondot.org>2002-10-27 19:12:37 +0000
commitab77194e2a895bd2862f3a23bcd9d31efb553a54 (patch)
tree874177bf26f10f85384b23974d17ce02c4b2254a /include/llvm/Support/GraphWriter.h
parentdc476b87d92a740f96597a4e73d4b07f79b9999d (diff)
downloadllvm-ab77194e2a895bd2862f3a23bcd9d31efb553a54.tar.gz
llvm-ab77194e2a895bd2862f3a23bcd9d31efb553a54.tar.bz2
llvm-ab77194e2a895bd2862f3a23bcd9d31efb553a54.tar.xz
Old GCC's don't have an <ostream>
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@4293 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm/Support/GraphWriter.h')
-rw-r--r--include/llvm/Support/GraphWriter.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/llvm/Support/GraphWriter.h b/include/llvm/Support/GraphWriter.h
index d7c928bf06..02269994e6 100644
--- a/include/llvm/Support/GraphWriter.h
+++ b/include/llvm/Support/GraphWriter.h
@@ -18,7 +18,7 @@
#include "Support/DOTGraphTraits.h"
#include "Support/GraphTraits.h"
-#include <ostream>
+#include <iostream>
namespace DOT { // Private functions...
inline std::string EscapeString(const std::string &Label) {