From db264ae07f451cbd5bb33d528ae00e4910ce386b Mon Sep 17 00:00:00 2001 From: Evan Cheng Date: Sat, 17 Mar 2007 08:53:30 +0000 Subject: [PATCH] Use SmallSet instead of std::set. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@35133 91177308-0d34-0410-b5e6-96231b3b80d8 --- lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp b/lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp index 059d8a72116..5623776158c 100644 --- a/lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp +++ b/lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp @@ -3983,7 +3983,7 @@ static bool SinkInvariantGEPIndex(BinaryOperator *BinOp, LoopInfo *loopInfo, return false; // DestBBs - These are the blocks where a copy of BinOp will be inserted. - std::set DestBBs; + SmallSet DestBBs; BasicBlock *DefBB = BinOp->getParent(); bool MadeChange = false; for (Value::use_iterator UI = BinOp->use_begin(), E = BinOp->use_end(); -- 2.34.1