summaryrefslogtreecommitdiffstats
path: root/llvm/lib/CodeGen/SelectionDAG/SelectionDAG.cpp
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2006-08-14 22:24:39 +0000
committerChris Lattner <sabre@nondot.org>2006-08-14 22:24:39 +0000
commite93a39f2d798be8bb5806fb555ce098d77dbb122 (patch)
treea53e60ec3cc82ca183dd3d32ec55d606b5afe221 /llvm/lib/CodeGen/SelectionDAG/SelectionDAG.cpp
parent63268f06723bdb0b3cff436a8808c947c3a66c92 (diff)
downloadbcm5719-llvm-e93a39f2d798be8bb5806fb555ce098d77dbb122.tar.gz
bcm5719-llvm-e93a39f2d798be8bb5806fb555ce098d77dbb122.zip
remove SelectionDAG::InsertISelMapEntry, it is dead
llvm-svn: 29677
Diffstat (limited to 'llvm/lib/CodeGen/SelectionDAG/SelectionDAG.cpp')
-rw-r--r--llvm/lib/CodeGen/SelectionDAG/SelectionDAG.cpp9
1 files changed, 0 insertions, 9 deletions
diff --git a/llvm/lib/CodeGen/SelectionDAG/SelectionDAG.cpp b/llvm/lib/CodeGen/SelectionDAG/SelectionDAG.cpp
index 1c17dfbee83..9f79429548b 100644
--- a/llvm/lib/CodeGen/SelectionDAG/SelectionDAG.cpp
+++ b/llvm/lib/CodeGen/SelectionDAG/SelectionDAG.cpp
@@ -2901,12 +2901,3 @@ void SelectionDAG::dump() const {
std::cerr << "\n\n";
}
-/// InsertISelMapEntry - A helper function to insert a key / element pair
-/// into a SDOperand to SDOperand map. This is added to avoid the map
-/// insertion operator from being inlined.
-void SelectionDAG::InsertISelMapEntry(std::map<SDOperand, SDOperand> &Map,
- SDNode *Key, unsigned KeyResNo,
- SDNode *Element, unsigned ElementResNo) {
- Map.insert(std::make_pair(SDOperand(Key, KeyResNo),
- SDOperand(Element, ElementResNo)));
-}
OpenPOWER on IntegriCloud