aboutsummaryrefslogtreecommitdiffstats
path: root/lib/CodeGen
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
commite51ee04c3d682b4701e4ba03233a37645206cf20 (patch)
treece8cbe173eb1d686140bf2adb5751fc7e51dc778 /lib/CodeGen
parent213a16c637926bfc38ba373d3aba6778e181e3ec (diff)
downloadexternal_llvm-e51ee04c3d682b4701e4ba03233a37645206cf20.zip
external_llvm-e51ee04c3d682b4701e4ba03233a37645206cf20.tar.gz
external_llvm-e51ee04c3d682b4701e4ba03233a37645206cf20.tar.bz2
remove SelectionDAG::InsertISelMapEntry, it is dead
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@29677 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/CodeGen')
-rw-r--r--lib/CodeGen/SelectionDAG/SelectionDAG.cpp9
1 files changed, 0 insertions, 9 deletions
diff --git a/lib/CodeGen/SelectionDAG/SelectionDAG.cpp b/lib/CodeGen/SelectionDAG/SelectionDAG.cpp
index 1c17dfb..9f79429 100644
--- a/lib/CodeGen/SelectionDAG/SelectionDAG.cpp
+++ b/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)));
-}