mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-03-01 01:30:36 +00:00
Aggregating function arguments is now an option. Default is `no', as before.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@13142 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
22108fac63
commit
de41aab1f7
@ -25,15 +25,17 @@ namespace llvm {
|
|||||||
/// ExtractCodeRegion - rip out a sequence of basic blocks into a new function
|
/// ExtractCodeRegion - rip out a sequence of basic blocks into a new function
|
||||||
///
|
///
|
||||||
Function* ExtractCodeRegion(DominatorSet &DS,
|
Function* ExtractCodeRegion(DominatorSet &DS,
|
||||||
const std::vector<BasicBlock*> &code);
|
const std::vector<BasicBlock*> &code,
|
||||||
|
bool AggregateArgs = false);
|
||||||
|
|
||||||
/// ExtractLoop - rip out a natural loop into a new function
|
/// ExtractLoop - rip out a natural loop into a new function
|
||||||
///
|
///
|
||||||
Function* ExtractLoop(DominatorSet &DS, Loop *L);
|
Function* ExtractLoop(DominatorSet &DS, Loop *L,
|
||||||
|
bool AggregateArgs = false);
|
||||||
|
|
||||||
/// ExtractBasicBlock - rip out a basic block into a new function
|
/// ExtractBasicBlock - rip out a basic block into a new function
|
||||||
///
|
///
|
||||||
Function* ExtractBasicBlock(BasicBlock *BB);
|
Function* ExtractBasicBlock(BasicBlock *BB, bool AggregateArgs = false);
|
||||||
}
|
}
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
Loading…
x
Reference in New Issue
Block a user