diff options
| author | Chris Lattner <sabre@nondot.org> | 2006-08-14 22:24:39 +0000 |
|---|---|---|
| committer | Chris Lattner <sabre@nondot.org> | 2006-08-14 22:24:39 +0000 |
| commit | e93a39f2d798be8bb5806fb555ce098d77dbb122 (patch) | |
| tree | a53e60ec3cc82ca183dd3d32ec55d606b5afe221 /llvm/lib | |
| parent | 63268f06723bdb0b3cff436a8808c947c3a66c92 (diff) | |
| download | llvm-e93a39f2d798be8bb5806fb555ce098d77dbb122.zip llvm-e93a39f2d798be8bb5806fb555ce098d77dbb122.tar.gz llvm-e93a39f2d798be8bb5806fb555ce098d77dbb122.tar.bz2 | |
remove SelectionDAG::InsertISelMapEntry, it is dead
llvm-svn: 29677
Diffstat (limited to 'llvm/lib')
| -rw-r--r-- | llvm/lib/CodeGen/SelectionDAG/SelectionDAG.cpp | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/llvm/lib/CodeGen/SelectionDAG/SelectionDAG.cpp b/llvm/lib/CodeGen/SelectionDAG/SelectionDAG.cpp index 1c17dfb..9f79429 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))); -} |
