diff options
Diffstat (limited to 'llvm/lib/Transforms/Utils/ValueMapper.h')
-rw-r--r-- | llvm/lib/Transforms/Utils/ValueMapper.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/llvm/lib/Transforms/Utils/ValueMapper.h b/llvm/lib/Transforms/Utils/ValueMapper.h index 8264ade108a..e67b3261dba 100644 --- a/llvm/lib/Transforms/Utils/ValueMapper.h +++ b/llvm/lib/Transforms/Utils/ValueMapper.h @@ -16,8 +16,13 @@ #define LIB_TRANSFORMS_UTILS_VALUE_MAPPER_H #include <map> + +namespace llvm { + class Value; Value *MapValue(const Value *V, std::map<const Value*, Value*> &VM); +} // End llvm namespace + #endif |