diff options
Diffstat (limited to 'include/llvm/CodeGen/SelectionDAGNodes.h')
-rw-r--r-- | include/llvm/CodeGen/SelectionDAGNodes.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/include/llvm/CodeGen/SelectionDAGNodes.h b/include/llvm/CodeGen/SelectionDAGNodes.h index f56863cd6e..7261f4e102 100644 --- a/include/llvm/CodeGen/SelectionDAGNodes.h +++ b/include/llvm/CodeGen/SelectionDAGNodes.h @@ -1449,9 +1449,9 @@ private: unsigned Alignment; public: - MemSDNode(unsigned Opc, SDVTList VTs, const Value *SrcValue, - unsigned Alignment) - : SDNode(Opc, VTs), SrcValue(SrcValue), Alignment(Alignment) {} + MemSDNode(unsigned Opc, SDVTList VTs, const Value *srcValue, + unsigned alignment) + : SDNode(Opc, VTs), SrcValue(srcValue), Alignment(alignment) {} virtual ~MemSDNode() {} |