mirror of
https://github.com/RPCSX/llvm.git
synced 2024-11-28 22:20:37 +00:00
[StackMap Liveness] Calling the base class' getAnalysisUsage method. NFCI.
Calling into the base class' getAnalysisUsage method after we did our pass specific modifications. This shouldn't really matter since this is the last pass in the pipeline anyways. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@241536 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
083b791eaf
commit
b062a9b411
@ -94,8 +94,7 @@ void StackMapLiveness::getAnalysisUsage(AnalysisUsage &AU) const {
|
||||
// We preserve all information.
|
||||
AU.setPreservesAll();
|
||||
AU.setPreservesCFG();
|
||||
// Default dependencie for all MachineFunction passes.
|
||||
AU.addRequired<MachineFunctionAnalysis>();
|
||||
MachineFunctionPass::getAnalysisUsage(AU);
|
||||
}
|
||||
|
||||
/// Calculate the liveness information for the given machine function.
|
||||
|
Loading…
Reference in New Issue
Block a user