diff options
author | Juergen Ributzka <juergen@apple.com> | 2015-07-07 02:05:18 +0000 |
---|---|---|
committer | Juergen Ributzka <juergen@apple.com> | 2015-07-07 02:05:18 +0000 |
commit | 9622cdf4b9b6b2dff19c70f805393bbd203016fc (patch) | |
tree | 406bcf0a056a3a8dc25ecef496ee56210d1ab623 /llvm/lib/CodeGen/StackMapLivenessAnalysis.cpp | |
parent | c111fcc0a0054649580271903fd95d0cccf8262e (diff) | |
download | llvm-9622cdf4b9b6b2dff19c70f805393bbd203016fc.zip llvm-9622cdf4b9b6b2dff19c70f805393bbd203016fc.tar.gz llvm-9622cdf4b9b6b2dff19c70f805393bbd203016fc.tar.bz2 |
[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.
llvm-svn: 241536
Diffstat (limited to 'llvm/lib/CodeGen/StackMapLivenessAnalysis.cpp')
-rw-r--r-- | llvm/lib/CodeGen/StackMapLivenessAnalysis.cpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/llvm/lib/CodeGen/StackMapLivenessAnalysis.cpp b/llvm/lib/CodeGen/StackMapLivenessAnalysis.cpp index 736dc69..8550583 100644 --- a/llvm/lib/CodeGen/StackMapLivenessAnalysis.cpp +++ b/llvm/lib/CodeGen/StackMapLivenessAnalysis.cpp @@ -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. |