summaryrefslogtreecommitdiff
path: root/include/llvm/Linker.h
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2001-10-28 22:40:59 +0000
committerChris Lattner <sabre@nondot.org>2001-10-28 22:40:59 +0000
commitfa2c50324ef7971bbc81efccb4f5cbd423f2e525 (patch)
treea9d12893c560bf8f6716a82a26bf142b1f846d34 /include/llvm/Linker.h
parent316a65bda996a5b22bf5e8dacadee848d51f6cbe (diff)
downloadllvm-fa2c50324ef7971bbc81efccb4f5cbd423f2e525.tar.gz
llvm-fa2c50324ef7971bbc81efccb4f5cbd423f2e525.tar.bz2
llvm-fa2c50324ef7971bbc81efccb4f5cbd423f2e525.tar.xz
Remove unneccesary function prototypes
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@1014 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm/Linker.h')
-rw-r--r--include/llvm/Linker.h19
1 files changed, 2 insertions, 17 deletions
diff --git a/include/llvm/Linker.h b/include/llvm/Linker.h
index 8774012f15..3650ccbadf 100644
--- a/include/llvm/Linker.h
+++ b/include/llvm/Linker.h
@@ -9,8 +9,6 @@
#include <string>
class Module;
-class Type;
-class Value;
// LinkModules - This function links two modules together, with the resulting
@@ -18,20 +16,7 @@ class Value;
// error occurs, true is returned and ErrorMsg (if not null) is set to indicate
// the problem.
//
-bool LinkModules(Module *Dest, const Module *Src, string *ErrorMsg = 0);
-
-
-// MangleTypeName - Implement a consistent name-mangling scheme for
-// a given type.
-//
-string MangleTypeName(const Type* type);
-
-
-// MangleName - implement a consistent name-mangling scheme for all
-// externally visible (i.e., global) objects.
-// privateName should be unique within the module.
-//
-string MangleName(const string& privateName, const Value* V);
-
+bool LinkModules(Module *Dest, const Module *Src, string *ErrorMsg = 0);
#endif
+