From: Juergen Ributzka Date: Tue, 7 Jul 2015 02:05:18 +0000 (+0000) Subject: [StackMap Liveness] Calling the base class' getAnalysisUsage method. NFCI. X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=b062a9b4116823a5f9a4c0629d82cfbe443e1766;p=oota-llvm.git [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 --- diff --git a/lib/CodeGen/StackMapLivenessAnalysis.cpp b/lib/CodeGen/StackMapLivenessAnalysis.cpp index 736dc69661c..855058358fe 100644 --- a/lib/CodeGen/StackMapLivenessAnalysis.cpp +++ b/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(); + MachineFunctionPass::getAnalysisUsage(AU); } /// Calculate the liveness information for the given machine function.