forked from OSchip/llvm-project
Adding IPSCCP and Internalize passes to the C-bindings
llvm-svn: 100893
This commit is contained in:
parent
0106063556
commit
a2ca3fa781
|
@ -54,6 +54,12 @@ void LLVMAddLowerSetJmpPass(LLVMPassManagerRef PM);
|
|||
/** See llvm::createPruneEHPass function. */
|
||||
void LLVMAddPruneEHPass(LLVMPassManagerRef PM);
|
||||
|
||||
/** See llvm::createIPSCCPPass function. */
|
||||
void LLVMAddIPSCCPPass(LLVMPassManagerRef PM);
|
||||
|
||||
/** See llvm::createInternalizePass function. */
|
||||
void LLVMAddInternalizePass(LLVMPassManagerRef, unsigned AllButMain);
|
||||
|
||||
// FIXME: Remove in LLVM 3.0.
|
||||
void LLVMAddRaiseAllocationsPass(LLVMPassManagerRef PM);
|
||||
|
||||
|
|
|
@ -62,6 +62,15 @@ void LLVMAddPruneEHPass(LLVMPassManagerRef PM) {
|
|||
unwrap(PM)->add(createPruneEHPass());
|
||||
}
|
||||
|
||||
void LLVMAddIPSCCPPass(LLVMPassManagerRef PM) {
|
||||
unwrap(PM)->add(createIPSCCPPass());
|
||||
}
|
||||
|
||||
void LLVMAddInternalizePass(LLVMPassManagerRef PM, unsigned AllButMain) {
|
||||
unwrap(PM)->add(createInternalizePass(AllButMain != 0));
|
||||
}
|
||||
|
||||
|
||||
void LLVMAddRaiseAllocationsPass(LLVMPassManagerRef PM) {
|
||||
// FIXME: Remove in LLVM 3.0.
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue