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/StackSlotColoring.cpp | |
parent | 2c8e108717655569e8ccebded65a8663a1686105 (diff) | |
download | external_llvm-465a66e263a9e032ddb5bdb2702226ec0480d0ef.zip external_llvm-465a66e263a9e032ddb5bdb2702226ec0480d0ef.tar.gz external_llvm-465a66e263a9e032ddb5bdb2702226ec0480d0ef.tar.bz2 |
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/StackSlotColoring.cpp')
-rw-r--r-- | lib/CodeGen/StackSlotColoring.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/CodeGen/StackSlotColoring.cpp b/lib/CodeGen/StackSlotColoring.cpp index ab980a1..1b5d417 100644 --- a/lib/CodeGen/StackSlotColoring.cpp +++ b/lib/CodeGen/StackSlotColoring.cpp @@ -66,6 +66,7 @@ namespace { virtual void getAnalysisUsage(AnalysisUsage &AU) const { AU.addRequired<LiveStacks>(); + AU.setPreservesAll(); MachineFunctionPass::getAnalysisUsage(AU); } |