blob: 23f70588586d5d3eae818c18922f6a0703e26089 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
//===- ValueMapper.h - Interface shared by lib/Transforms/Utils -*- C++ -*-===//
//
// This file defines the MapValue interface which is used by various parts of
// the Transforms/Utils library to implement cloning and linking facilities.
//
//===----------------------------------------------------------------------===//
#ifndef LIB_TRANSFORMS_UTILS_VALUE_MAPPER_H
#define LIB_TRANSFORMS_UTILS_VALUE_MAPPER_H
#include <map>
class Value;
Value *MapValue(const Value *V, std::map<const Value*, Value*> &VM);
#endif
|