summaryrefslogtreecommitdiffstats
path: root/llvm/lib/CodeGen/StackMapLivenessAnalysis.cpp
diff options
context:
space:
mode:
authorJuergen Ributzka <juergen@apple.com>2015-07-07 02:05:18 +0000
committerJuergen Ributzka <juergen@apple.com>2015-07-07 02:05:18 +0000
commit9622cdf4b9b6b2dff19c70f805393bbd203016fc (patch)
tree406bcf0a056a3a8dc25ecef496ee56210d1ab623 /llvm/lib/CodeGen/StackMapLivenessAnalysis.cpp
parentc111fcc0a0054649580271903fd95d0cccf8262e (diff)
downloadbcm5719-llvm-9622cdf4b9b6b2dff19c70f805393bbd203016fc.tar.gz
bcm5719-llvm-9622cdf4b9b6b2dff19c70f805393bbd203016fc.zip
[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.cpp3
1 files changed, 1 insertions, 2 deletions
diff --git a/llvm/lib/CodeGen/StackMapLivenessAnalysis.cpp b/llvm/lib/CodeGen/StackMapLivenessAnalysis.cpp
index 736dc69661c..855058358fe 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.
OpenPOWER on IntegriCloud