aboutsummaryrefslogtreecommitdiffstats
path: root/include/llvm/Transforms/Utils/CloneFunction.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/llvm/Transforms/Utils/CloneFunction.h')
-rw-r--r--include/llvm/Transforms/Utils/CloneFunction.h17
1 files changed, 0 insertions, 17 deletions
diff --git a/include/llvm/Transforms/Utils/CloneFunction.h b/include/llvm/Transforms/Utils/CloneFunction.h
deleted file mode 100644
index fe29dc4..0000000
--- a/include/llvm/Transforms/Utils/CloneFunction.h
+++ /dev/null
@@ -1,17 +0,0 @@
-
-
-#ifndef LLVM_TRANSFORMS_CLONE_FUNCTION_H
-#define LLVM_TRANSFORMS_CLONE_FUNCTION_H
-
-#include <vector>
-class Function;
-class Value;
-
-// Clone OldFunc into NewFunc, transforming the old arguments into references to
-// ArgMap values. Note that if NewFunc already has basic blocks, the ones
-// cloned into it will be added to the end of the function.
-//
-void CloneFunctionInto(Function *NewFunc, const Function *OldFunc,
- const std::vector<Value*> &ArgMap);
-
-#endif