Force anything that #includes llvm/Transforms/Utils/UnifyFunctionExitNodes.h

to link in the implementation.  Thanks to Anton Korobeynikov for figuring out
what was going on here.


git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@28660 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Chris Lattner 2006-06-02 18:40:06 +00:00
parent 2d2c2f2bb8
commit 191b0ba97e
2 changed files with 8 additions and 0 deletions

View File

@ -38,10 +38,16 @@ public:
BasicBlock *getUnreachableBlock() const { return UnreachableBlock; }
virtual bool runOnFunction(Function &F);
// Force linking the impl of this class into anything that uses this header.
static int stub;
};
Pass *createUnifyFunctionExitNodesPass();
static IncludeFile
UNIFY_FUNCTION_EXIT_NODES_INCLUDE_FILE(&UnifyFunctionExitNodes::stub);
} // End llvm namespace
#endif

View File

@ -25,6 +25,8 @@ using namespace llvm;
static RegisterOpt<UnifyFunctionExitNodes>
X("mergereturn", "Unify function exit nodes");
int UnifyFunctionExitNodes::stub;
Pass *llvm::createUnifyFunctionExitNodesPass() {
return new UnifyFunctionExitNodes();
}