diff options
| author | Justin Bogner <mail@justinbogner.com> | 2016-03-07 20:15:12 +0000 | 
|---|---|---|
| committer | Justin Bogner <mail@justinbogner.com> | 2016-03-07 20:15:12 +0000 | 
| commit | bbab368e13e067e035d90bbfec92648b3700638c (patch) | |
| tree | b7c30ea3e25e4b80226e898a8e28946068882dfd | |
| parent | 37bcaac179bd1c36901d418c6bdf4503993482fe (diff) | |
| download | bcm5719-llvm-bbab368e13e067e035d90bbfec92648b3700638c.tar.gz bcm5719-llvm-bbab368e13e067e035d90bbfec92648b3700638c.zip | |
SelectionDAG: Remove some unused AtomicSDNode constructors. NFC
llvm-svn: 262849
| -rw-r--r-- | llvm/include/llvm/CodeGen/SelectionDAGNodes.h | 34 | 
1 files changed, 0 insertions, 34 deletions
| diff --git a/llvm/include/llvm/CodeGen/SelectionDAGNodes.h b/llvm/include/llvm/CodeGen/SelectionDAGNodes.h index c6f7a9eee26..375e238261d 100644 --- a/llvm/include/llvm/CodeGen/SelectionDAGNodes.h +++ b/llvm/include/llvm/CodeGen/SelectionDAGNodes.h @@ -1265,40 +1265,6 @@ class AtomicSDNode : public MemSDNode {    }  public: -  // Opc:   opcode for atomic -  // VTL:    value type list -  // Chain:  memory chain for operaand -  // Ptr:    address to update as a SDValue -  // Cmp:    compare value -  // Swp:    swap value -  // SrcVal: address to update as a Value (used for MemOperand) -  // Align:  alignment of memory -  AtomicSDNode(unsigned Opc, unsigned Order, DebugLoc dl, SDVTList VTL, -               EVT MemVT, SDValue Chain, SDValue Ptr, SDValue Cmp, SDValue Swp, -               MachineMemOperand *MMO, AtomicOrdering Ordering, -               SynchronizationScope SynchScope) -      : MemSDNode(Opc, Order, dl, VTL, MemVT, MMO) { -    InitAtomic(Ordering, Ordering, SynchScope); -    InitOperands(Ops, Chain, Ptr, Cmp, Swp); -  } -  AtomicSDNode(unsigned Opc, unsigned Order, DebugLoc dl, SDVTList VTL, -               EVT MemVT, -               SDValue Chain, SDValue Ptr, -               SDValue Val, MachineMemOperand *MMO, -               AtomicOrdering Ordering, SynchronizationScope SynchScope) -    : MemSDNode(Opc, Order, dl, VTL, MemVT, MMO) { -    InitAtomic(Ordering, Ordering, SynchScope); -    InitOperands(Ops, Chain, Ptr, Val); -  } -  AtomicSDNode(unsigned Opc, unsigned Order, DebugLoc dl, SDVTList VTL, -               EVT MemVT, -               SDValue Chain, SDValue Ptr, -               MachineMemOperand *MMO, -               AtomicOrdering Ordering, SynchronizationScope SynchScope) -    : MemSDNode(Opc, Order, dl, VTL, MemVT, MMO) { -    InitAtomic(Ordering, Ordering, SynchScope); -    InitOperands(Ops, Chain, Ptr); -  }    AtomicSDNode(unsigned Opc, unsigned Order, DebugLoc dl, SDVTList VTL, EVT MemVT,                 const SDValue* AllOps, SDUse *DynOps, unsigned NumOps,                 MachineMemOperand *MMO, | 

