diff options
author | Dan Gohman <gohman@apple.com> | 2008-06-25 16:07:49 +0000 |
---|---|---|
committer | Dan Gohman <gohman@apple.com> | 2008-06-25 16:07:49 +0000 |
commit | fd4418fc9b4725c44210c169c4d6500be468ca70 (patch) | |
tree | 09b2f9af6cb1c7dcc96d57e36b44724a5e3e87e5 /include/llvm/CodeGen/SelectionDAG.h | |
parent | 21b9d283eae05e1e50d011c9038d77eb7bf02f49 (diff) |
Remove the OrigVT member from AtomicSDNode, as it is redundant with
the base SDNode's VTList.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@52722 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm/CodeGen/SelectionDAG.h')
-rw-r--r-- | include/llvm/CodeGen/SelectionDAG.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/llvm/CodeGen/SelectionDAG.h b/include/llvm/CodeGen/SelectionDAG.h index 4c2ddce8a9..8b3dad223a 100644 --- a/include/llvm/CodeGen/SelectionDAG.h +++ b/include/llvm/CodeGen/SelectionDAG.h @@ -370,13 +370,13 @@ public: /// getAtomic - Gets a node for an atomic op, produces result and chain, takes /// 3 operands SDOperand getAtomic(unsigned Opcode, SDOperand Chain, SDOperand Ptr, - SDOperand Cmp, SDOperand Swp, MVT VT, const Value* PtrVal, + SDOperand Cmp, SDOperand Swp, const Value* PtrVal, unsigned Alignment=0); /// getAtomic - Gets a node for an atomic op, produces result and chain, takes /// 2 operands SDOperand getAtomic(unsigned Opcode, SDOperand Chain, SDOperand Ptr, - SDOperand Val, MVT VT, const Value* PtrVal, + SDOperand Val, const Value* PtrVal, unsigned Alignment = 0); /// getLoad - Loads are not normal binary operators: their result type is not |