summaryrefslogtreecommitdiffstats
path: root/llvm/lib/CodeGen/SelectionDAG/SelectionDAG.cpp
diff options
context:
space:
mode:
authorEvan Cheng <evan.cheng@apple.com>2006-07-28 00:47:19 +0000
committerEvan Cheng <evan.cheng@apple.com>2006-07-28 00:47:19 +0000
commitb572401bea92259b2e90cef4e7169883e522f0d7 (patch)
treee0e4372150b07ebaa53c56e231093c121eee1003 /llvm/lib/CodeGen/SelectionDAG/SelectionDAG.cpp
parent3390cbed2c74a69c355db9862f3b78ec2ba265a5 (diff)
downloadbcm5719-llvm-b572401bea92259b2e90cef4e7169883e522f0d7.tar.gz
bcm5719-llvm-b572401bea92259b2e90cef4e7169883e522f0d7.zip
Remove InFlightSet hack. No longer needed.
llvm-svn: 29373
Diffstat (limited to 'llvm/lib/CodeGen/SelectionDAG/SelectionDAG.cpp')
-rw-r--r--llvm/lib/CodeGen/SelectionDAG/SelectionDAG.cpp14
1 files changed, 0 insertions, 14 deletions
diff --git a/llvm/lib/CodeGen/SelectionDAG/SelectionDAG.cpp b/llvm/lib/CodeGen/SelectionDAG/SelectionDAG.cpp
index 1a5a09b1dc9..8c40a72bec1 100644
--- a/llvm/lib/CodeGen/SelectionDAG/SelectionDAG.cpp
+++ b/llvm/lib/CodeGen/SelectionDAG/SelectionDAG.cpp
@@ -3115,17 +3115,3 @@ void SelectionDAG::InsertISelMapEntry(std::map<SDOperand, SDOperand> &Map,
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);
-}
OpenPOWER on IntegriCloud