summaryrefslogtreecommitdiff
path: root/lib/Transforms/Utils/ValueMapper.cpp
diff options
context:
space:
mode:
authorReid Spencer <rspencer@reidspencer.com>2004-07-04 12:19:56 +0000
committerReid Spencer <rspencer@reidspencer.com>2004-07-04 12:19:56 +0000
commit954da37bb492b519f5c31dc360f2a142567e08b4 (patch)
tree09912ebacd5f394d55b9ea5e929b12e0c185fa09 /lib/Transforms/Utils/ValueMapper.cpp
parent8ce1da781ef6b5f927e07c51d71c738eeb4a8be3 (diff)
downloadllvm-954da37bb492b519f5c31dc360f2a142567e08b4.tar.gz
llvm-954da37bb492b519f5c31dc360f2a142567e08b4.tar.bz2
llvm-954da37bb492b519f5c31dc360f2a142567e08b4.tar.xz
Add #include <iostream> since Value.h does not #include it any more.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@14622 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Transforms/Utils/ValueMapper.cpp')
-rw-r--r--lib/Transforms/Utils/ValueMapper.cpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/lib/Transforms/Utils/ValueMapper.cpp b/lib/Transforms/Utils/ValueMapper.cpp
index abf9957eb1..16547e1337 100644
--- a/lib/Transforms/Utils/ValueMapper.cpp
+++ b/lib/Transforms/Utils/ValueMapper.cpp
@@ -15,6 +15,8 @@
#include "ValueMapper.h"
#include "llvm/Constants.h"
#include "llvm/Instruction.h"
+#include <iostream>
+
using namespace llvm;
Value *llvm::MapValue(const Value *V, std::map<const Value*, Value*> &VM) {