diff options
author | Chris Lattner <sabre@nondot.org> | 2010-03-24 22:47:12 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2010-03-24 22:47:12 +0000 |
commit | e70742450f36c4604767d1150fc22f48ec835047 (patch) | |
tree | 2081e52be4c49e4320c554e0f038afd7900b74cf /llvm/lib/CodeGen/SelectionDAG/InstrEmitter.h | |
parent | 26136636e0f2bc7b5daa49de781bd506ad27ef38 (diff) | |
download | bcm5719-llvm-e70742450f36c4604767d1150fc22f48ec835047.tar.gz bcm5719-llvm-e70742450f36c4604767d1150fc22f48ec835047.zip |
remove dead argument.
llvm-svn: 99445
Diffstat (limited to 'llvm/lib/CodeGen/SelectionDAG/InstrEmitter.h')
-rw-r--r-- | llvm/lib/CodeGen/SelectionDAG/InstrEmitter.h | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/llvm/lib/CodeGen/SelectionDAG/InstrEmitter.h b/llvm/lib/CodeGen/SelectionDAG/InstrEmitter.h index fe025b28d31..bd69f0b0f73 100644 --- a/llvm/lib/CodeGen/SelectionDAG/InstrEmitter.h +++ b/llvm/lib/CodeGen/SelectionDAG/InstrEmitter.h @@ -117,7 +117,7 @@ public: if (Node->isMachineOpcode()) EmitMachineNode(Node, IsClone, IsCloned, VRBaseMap, EM); else - EmitSpecialNode(Node, IsClone, IsCloned, VRBaseMap, EM); + EmitSpecialNode(Node, IsClone, IsCloned, VRBaseMap); } /// getBlock - Return the current basic block. @@ -135,8 +135,7 @@ private: DenseMap<SDValue, unsigned> &VRBaseMap, DenseMap<MachineBasicBlock*, MachineBasicBlock*> *EM); void EmitSpecialNode(SDNode *Node, bool IsClone, bool IsCloned, - DenseMap<SDValue, unsigned> &VRBaseMap, - DenseMap<MachineBasicBlock*, MachineBasicBlock*> *EM); + DenseMap<SDValue, unsigned> &VRBaseMap); }; } |