Whoops this already existed.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@98297 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Nate Begeman 2010-03-11 23:21:19 +00:00
parent 47a53a6e4c
commit 75d5fe9213
2 changed files with 0 additions and 7 deletions

View File

@ -98,9 +98,6 @@ void LLVMAddDemoteMemoryToRegisterPass(LLVMPassManagerRef PM);
/** See llvm::createVerifierPass function. */
void LLVMAddVerifierPass(LLVMPassManagerRef PM);
/** PM->add(new TargetData(M)) */
void LLVMAddTargetData(LLVMPassManagerRef PM, LLVMModuleRef M);
#ifdef __cplusplus
}
#endif /* defined(__cplusplus) */

View File

@ -116,7 +116,3 @@ void LLVMAddDemoteMemoryToRegisterPass(LLVMPassManagerRef PM) {
void LLVMAddVerifierPass(LLVMPassManagerRef PM) {
unwrap(PM)->add(createVerifierPass());
}
void LLVMAddTargetData(LLVMPassManagerRef PM, LLVMModuleRef M) {
unwrap(PM)->add(new TargetData(unwrap(M)));
}