X-Git-Url: http://demsky.eecs.uci.edu/git/?a=blobdiff_plain;f=lib%2FCodeGen%2FSjLjEHPrepare.cpp;h=d14e29b6cc08f3144fa0b61efd34d83677bce96b;hb=6c0e1e0fa658f4e7466c6787aedce992ece2db55;hp=3a6c6485b3a830b1e5e2c813bd9f0956872779e5;hpb=f06c7072c23c9909638d7dab5fff679b7ac5f8d2;p=oota-llvm.git diff --git a/lib/CodeGen/SjLjEHPrepare.cpp b/lib/CodeGen/SjLjEHPrepare.cpp index 3a6c6485b3a..d14e29b6cc0 100644 --- a/lib/CodeGen/SjLjEHPrepare.cpp +++ b/lib/CodeGen/SjLjEHPrepare.cpp @@ -139,7 +139,7 @@ void SjLjEHPrepare::insertCallSiteStore(Instruction *I, int Number) { /// MarkBlocksLiveIn - Insert BB and all of its predescessors into LiveBBs until /// we reach blocks we've already seen. static void MarkBlocksLiveIn(BasicBlock *BB, - SmallPtrSetImpl &LiveBBs) { + SmallPtrSet &LiveBBs) { if (!LiveBBs.insert(BB)) return; // already been here.