Expose method to merge identically named methods

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@1109 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Chris Lattner 2001-11-03 19:49:54 +00:00
parent 51bc0e7994
commit 407c25bd82

View File

@ -14,6 +14,12 @@ public:
inline CleanupGCCOutput() : Malloc(0), Free(0) {}
// PatchUpMethodReferences - This is a part of the functionality exported by
// the CleanupGCCOutput pass. This causes functions with different signatures
// to be linked together if they have the same name.
//
static bool PatchUpMethodReferences(Module *M);
// doPassInitialization - For this pass, it removes global symbol table
// entries for primitive types. These are never used for linking in GCC and
// they make the output uglier to look at, so we nuke them.