From 9622cdf4b9b6b2dff19c70f805393bbd203016fc Mon Sep 17 00:00:00 2001 From: Juergen Ributzka Date: Tue, 7 Jul 2015 02:05:18 +0000 Subject: [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 --- llvm/lib/CodeGen/StackMapLivenessAnalysis.cpp | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'llvm/lib/CodeGen/StackMapLivenessAnalysis.cpp') 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(); + MachineFunctionPass::getAnalysisUsage(AU); } /// Calculate the liveness information for the given machine function. -- cgit v1.2.3