[llvm-commits] CVS: llvm/include/llvm/CodeGen/SelectionDAG.h

Evan Cheng evan.cheng at apple.com
Thu Jul 27 17:44:43 PDT 2006



Changes in directory llvm/include/llvm/CodeGen:

SelectionDAG.h updated: 1.104 -> 1.105
---
Log message:

Remove InFlightSet hack. No longer needed.

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

 SelectionDAG.h |   10 ----------
 1 files changed, 10 deletions(-)


Index: llvm/include/llvm/CodeGen/SelectionDAG.h
diff -u llvm/include/llvm/CodeGen/SelectionDAG.h:1.104 llvm/include/llvm/CodeGen/SelectionDAG.h:1.105
--- llvm/include/llvm/CodeGen/SelectionDAG.h:1.104	Thu Jul 27 02:36:47 2006
+++ llvm/include/llvm/CodeGen/SelectionDAG.h	Thu Jul 27 19:44:29 2006
@@ -435,16 +435,6 @@
                                  SDNode *Key, unsigned KeyResNo,
                                  SDNode *Element, unsigned 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.
-  static void InsertInFlightSetEntry(std::set<SDNode*> &Set, SDNode *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.
-  static void RemoveInFlightSetEntry(std::set<SDNode*> &Set, SDNode *N);
-  
 private:
   void RemoveNodeFromCSEMaps(SDNode *N);
   SDNode *AddNonLeafNodeToCSEMaps(SDNode *N);






More information about the llvm-commits mailing list