From: Jim Grosbach Date: Tue, 1 Jun 2010 18:06:35 +0000 (+0000) Subject: Add a FIXME X-Git-Url: http://plrg.eecs.uci.edu/git/?a=commitdiff_plain;h=2f3257ef04a40adfeb6440d1b02f7bbfee0dd4fc;p=oota-llvm.git Add a FIXME git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@105282 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/CodeGen/SjLjEHPrepare.cpp b/lib/CodeGen/SjLjEHPrepare.cpp index e94d4d35381..825376d4676 100644 --- a/lib/CodeGen/SjLjEHPrepare.cpp +++ b/lib/CodeGen/SjLjEHPrepare.cpp @@ -179,6 +179,8 @@ static void MarkBlocksLiveIn(BasicBlock *BB, std::set &LiveBBs) { /// we spill into a stack location, guaranteeing that there is nothing live /// across the unwind edge. This process also splits all critical edges /// coming out of invoke's. +/// FIXME: Move this function to a common utility file (Local.cpp?) so +/// both SjLj and LowerInvoke can use it. void SjLjEHPass:: splitLiveRangesLiveAcrossInvokes(SmallVector &Invokes) { // First step, split all critical edges from invoke instructions.