aboutsummaryrefslogtreecommitdiff
path: root/include/llvm/CodeGen/SelectionDAGNodes.h
diff options
context:
space:
mode:
authorBill Wendling <isanbard@gmail.com>2008-06-26 18:11:45 +0000
committerBill Wendling <isanbard@gmail.com>2008-06-26 18:11:45 +0000
commit8032020cf209721bc104648f28b1c4b45fb88691 (patch)
tree68521e390dc982629cd644b5ffd83ba0e294952a /include/llvm/CodeGen/SelectionDAGNodes.h
parent8e7de8fc58aa06b05e4c54152195d247f4728975 (diff)
Remove warnings about shadowed and unused variables.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@52791 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm/CodeGen/SelectionDAGNodes.h')
-rw-r--r--include/llvm/CodeGen/SelectionDAGNodes.h6
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() {}