diff options
author | Evan Cheng <evan.cheng@apple.com> | 2008-09-22 20:58:04 +0000 |
---|---|---|
committer | Evan Cheng <evan.cheng@apple.com> | 2008-09-22 20:58:04 +0000 |
commit | 465a66e263a9e032ddb5bdb2702226ec0480d0ef (patch) | |
tree | afd3e364209c9b349e6a70ca3ee71c086ff7297a /lib/CodeGen/LiveStackAnalysis.cpp | |
parent | 2c8e108717655569e8ccebded65a8663a1686105 (diff) | |
download | external_llvm-465a66e263a9e032ddb5bdb2702226ec0480d0ef.tar.gz external_llvm-465a66e263a9e032ddb5bdb2702226ec0480d0ef.tar.bz2 external_llvm-465a66e263a9e032ddb5bdb2702226ec0480d0ef.zip |
Mark several codegen passes as preserving all analysis.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@56469 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/CodeGen/LiveStackAnalysis.cpp')
-rw-r--r-- | lib/CodeGen/LiveStackAnalysis.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/CodeGen/LiveStackAnalysis.cpp b/lib/CodeGen/LiveStackAnalysis.cpp index 9358c10570..2baf699c66 100644 --- a/lib/CodeGen/LiveStackAnalysis.cpp +++ b/lib/CodeGen/LiveStackAnalysis.cpp @@ -26,6 +26,7 @@ static RegisterPass<LiveStacks> X("livestacks", "Live Stack Slot Analysis"); void LiveStacks::getAnalysisUsage(AnalysisUsage &AU) const { AU.setPreservesAll(); + MachineFunctionPass::getAnalysisUsage(AU); } void LiveStacks::releaseMemory() { |