diff options
author | Evan Cheng <evan.cheng@apple.com> | 2008-09-22 22:26:15 +0000 |
---|---|---|
committer | Evan Cheng <evan.cheng@apple.com> | 2008-09-22 22:26:15 +0000 |
commit | bab5988017e08cd65f59fe30a7b72809654bf746 (patch) | |
tree | fd5eb2632c38b3cfb14918453abb68ac3763c5f6 /llvm/lib/CodeGen/LiveStackAnalysis.cpp | |
parent | 962c2cf17a5037893e0cd6f9f724ce01f83906d6 (diff) | |
download | bcm5719-llvm-bab5988017e08cd65f59fe30a7b72809654bf746.tar.gz bcm5719-llvm-bab5988017e08cd65f59fe30a7b72809654bf746.zip |
Livestacks really does preserve everything.
llvm-svn: 56476
Diffstat (limited to 'llvm/lib/CodeGen/LiveStackAnalysis.cpp')
-rw-r--r-- | llvm/lib/CodeGen/LiveStackAnalysis.cpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/llvm/lib/CodeGen/LiveStackAnalysis.cpp b/llvm/lib/CodeGen/LiveStackAnalysis.cpp index 0670570ddf5..2baf699c66c 100644 --- a/llvm/lib/CodeGen/LiveStackAnalysis.cpp +++ b/llvm/lib/CodeGen/LiveStackAnalysis.cpp @@ -25,8 +25,7 @@ char LiveStacks::ID = 0; static RegisterPass<LiveStacks> X("livestacks", "Live Stack Slot Analysis"); void LiveStacks::getAnalysisUsage(AnalysisUsage &AU) const { - AU.addPreservedID(MachineLoopInfoID); - AU.addPreservedID(MachineDominatorsID); + AU.setPreservesAll(); MachineFunctionPass::getAnalysisUsage(AU); } |