Changes in directory llvm/lib/CodeGen/SelectionDAG:

SelectionDAG.cpp updated: 1.313 -> 1.314
---
Log message:

Remove InFlightSet hack. No longer needed.

---
Diffs of the changes:  (+0 -14)

 SelectionDAG.cpp |   14 --------------
 1 files changed, 14 deletions(-)


Index: llvm/lib/CodeGen/SelectionDAG/SelectionDAG.cpp
diff -u llvm/lib/CodeGen/SelectionDAG/SelectionDAG.cpp:1.313 
llvm/lib/CodeGen/SelectionDAG/SelectionDAG.cpp:1.314
--- llvm/lib/CodeGen/SelectionDAG/SelectionDAG.cpp:1.313        Thu Jul 27 
02:36:47 2006
+++ llvm/lib/CodeGen/SelectionDAG/SelectionDAG.cpp      Thu Jul 27 19:45:53 2006
@@ -3115,17 +3115,3 @@
   Map.insert(std::make_pair(SDOperand(Key, KeyResNo),
                             SDOperand(Element, ElementResNo)));
 }
-
-/// InsertInFlightSetEntry - A helper function to insert a SDNode* to a
-/// SDNode* set. This is added to avoid the set insertion operator from being
-/// inlined.
-void SelectionDAG::InsertInFlightSetEntry(std::set<SDNode*> &Set, SDNode *N) {
-  Set.insert(N);
-}
-
-/// RemoveInFlightSetEntry - A helper function to remove a SDNode* from a
-/// SDNode* set. This is added to avoid the set removal operator from being
-/// inlined.
-void SelectionDAG::RemoveInFlightSetEntry(std::set<SDNode*> &Set, SDNode *N) {
-  Set.erase(N);
-}



_______________________________________________
llvm-commits mailing list
llvm-commits@cs.uiuc.edu
http://lists.cs.uiuc.edu/mailman/listinfo/llvm-commits

Reply via email to