Displaying 2 results from an estimated 2 matches for "llvmaddsimplifylibcallspass".
2013 Mar 21
2
[LLVMdev] Changing the LLVM C API to remove a pass
...API functions for
creating and managing
the pass:
/** See llvm::PassManagerBuilder::DisableSimplifyLibCalls */
void
LLVMPassManagerBuilderSetDisableSimplifyLibCalls(LLVMPassManagerBuilderRef
PMB,
LLVMBool Value);
/** See llvm::createSimplifyLibCallsPass function. */
void LLVMAddSimplifyLibCallsPass(LLVMPassManagerRef PM);
Is it OK to remove these? Do I need to keep them? Or is there some
sort of deprecation process?
-- Meador
2013 Mar 21
0
[LLVMdev] Changing the LLVM C API to remove a pass
...;
> /** See llvm::PassManagerBuilder::DisableSimplifyLibCalls */
> void
> LLVMPassManagerBuilderSetDisableSimplifyLibCalls(LLVMPassManagerBuilderRef
> PMB,
>
> LLVMBool Value);
>
> /** See llvm::createSimplifyLibCallsPass function. */
> void LLVMAddSimplifyLibCallsPass(LLVMPassManagerRef PM);
>
>
> Is it OK to remove these? Do I need to keep them? Or is there some
> sort of deprecation process?
I think you should try to keep them. I guess LLVMAddSimplifyLibCallsPass can be
changed to do nothing (or produce a warning). Probably
LLVMPassManagerBuil...