mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-01-03 13:31:05 +00:00
Add missing decls.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@55719 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
79cca4f49f
commit
3d566ddd05
@ -62,6 +62,7 @@ namespace {
|
||||
(void) llvm::createDeadTypeEliminationPass();
|
||||
(void) llvm::createEdgeProfilerPass();
|
||||
(void) llvm::createFunctionInliningPass();
|
||||
(void) llvm::createAlwaysInlinerPass();
|
||||
(void) llvm::createFunctionProfilerPass();
|
||||
(void) llvm::createGlobalDCEPass();
|
||||
(void) llvm::createGlobalOptimizerPass();
|
||||
|
@ -94,6 +94,11 @@ ModulePass *createGVExtractionPass(std::vector<GlobalValue*>& GVs, bool
|
||||
Pass *createFunctionInliningPass();
|
||||
Pass *createFunctionInliningPass(int Threshold);
|
||||
|
||||
//===----------------------------------------------------------------------===//
|
||||
/// createAlwaysInlinerPass - Return a new pass object that inlines only
|
||||
/// functions that are marked as "always_inline".
|
||||
Pass *createAlwaysInlinerPass();
|
||||
|
||||
//===----------------------------------------------------------------------===//
|
||||
/// createPruneEHPass - Return a new pass object which transforms invoke
|
||||
/// instructions into calls, if the callee can _not_ unwind the stack.
|
||||
|
Loading…
Reference in New Issue
Block a user