TableGen: allow use of uint64_t for available features mask.
[oota-llvm.git] / lib / CodeGen / SjLjEHPrepare.cpp
index 3a6c6485b3a830b1e5e2c813bd9f0956872779e5..d14e29b6cc08f3144fa0b61efd34d83677bce96b 100644 (file)
@@ -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<BasicBlock *> &LiveBBs) {
+                             SmallPtrSet<BasicBlock *, 64> &LiveBBs) {
   if (!LiveBBs.insert(BB))
     return; // already been here.