aboutsummaryrefslogtreecommitdiffstats
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
commitfca8c15d64a301d3bcc5ff91c849bb0821583a36 (patch)
tree68521e390dc982629cd644b5ffd83ba0e294952a /include/llvm/CodeGen/SelectionDAGNodes.h
parent4983c7c09c1f6b22d113c6488ea28d26ce25aec2 (diff)
downloadexternal_llvm-fca8c15d64a301d3bcc5ff91c849bb0821583a36.zip
external_llvm-fca8c15d64a301d3bcc5ff91c849bb0821583a36.tar.gz
external_llvm-fca8c15d64a301d3bcc5ff91c849bb0821583a36.tar.bz2
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 f56863c..7261f4e 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() {}