mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-03-03 14:31:10 +00:00
Const-correct SelectionDAG::getAtomic.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@207373 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
d8e141c0c1
commit
e046664a0e
@ -724,12 +724,12 @@ public:
|
||||
/// getAtomic - Gets a node for an atomic op, produces result and chain and
|
||||
/// takes N operands.
|
||||
SDValue getAtomic(unsigned Opcode, SDLoc dl, EVT MemVT, SDVTList VTList,
|
||||
SDValue *Ops, unsigned NumOps, MachineMemOperand *MMO,
|
||||
const SDValue *Ops, unsigned NumOps, MachineMemOperand *MMO,
|
||||
AtomicOrdering SuccessOrdering,
|
||||
AtomicOrdering FailureOrdering,
|
||||
SynchronizationScope SynchScope);
|
||||
SDValue getAtomic(unsigned Opcode, SDLoc dl, EVT MemVT, SDVTList VTList,
|
||||
SDValue *Ops, unsigned NumOps, MachineMemOperand *MMO,
|
||||
const SDValue *Ops, unsigned NumOps, MachineMemOperand *MMO,
|
||||
AtomicOrdering Ordering, SynchronizationScope SynchScope);
|
||||
|
||||
/// getMemIntrinsicNode - Creates a MemIntrinsicNode that may produce a
|
||||
|
@ -1160,7 +1160,7 @@ public:
|
||||
InitOperands(Ops, Chain, Ptr);
|
||||
}
|
||||
AtomicSDNode(unsigned Opc, unsigned Order, DebugLoc dl, SDVTList VTL, EVT MemVT,
|
||||
SDValue* AllOps, SDUse *DynOps, unsigned NumOps,
|
||||
const SDValue* AllOps, SDUse *DynOps, unsigned NumOps,
|
||||
MachineMemOperand *MMO,
|
||||
AtomicOrdering SuccessOrdering, AtomicOrdering FailureOrdering,
|
||||
SynchronizationScope SynchScope)
|
||||
|
@ -4238,7 +4238,7 @@ SDValue SelectionDAG::getMemset(SDValue Chain, SDLoc dl, SDValue Dst,
|
||||
}
|
||||
|
||||
SDValue SelectionDAG::getAtomic(unsigned Opcode, SDLoc dl, EVT MemVT,
|
||||
SDVTList VTList, SDValue *Ops, unsigned NumOps,
|
||||
SDVTList VTList, const SDValue *Ops, unsigned NumOps,
|
||||
MachineMemOperand *MMO,
|
||||
AtomicOrdering SuccessOrdering,
|
||||
AtomicOrdering FailureOrdering,
|
||||
@ -4271,7 +4271,7 @@ SDValue SelectionDAG::getAtomic(unsigned Opcode, SDLoc dl, EVT MemVT,
|
||||
}
|
||||
|
||||
SDValue SelectionDAG::getAtomic(unsigned Opcode, SDLoc dl, EVT MemVT,
|
||||
SDVTList VTList, SDValue *Ops, unsigned NumOps,
|
||||
SDVTList VTList, const SDValue *Ops, unsigned NumOps,
|
||||
MachineMemOperand *MMO,
|
||||
AtomicOrdering Ordering,
|
||||
SynchronizationScope SynchScope) {
|
||||
|
Loading…
x
Reference in New Issue
Block a user