diff options
author | Daniel Dunbar <daniel@zuster.org> | 2009-05-18 16:43:04 +0000 |
---|---|---|
committer | Daniel Dunbar <daniel@zuster.org> | 2009-05-18 16:43:04 +0000 |
commit | 8c562e2d25d319f8bde7a1a60142203f316a2883 (patch) | |
tree | 139bda2a4914e0e722a127c7e885836242e93cdf /lib/CodeGen/SelectionDAG/DAGCombiner.cpp | |
parent | 10978bd5918689334d44cd30e5cfe06588b6014d (diff) |
Silence Release-Asserts warnings.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@72011 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/CodeGen/SelectionDAG/DAGCombiner.cpp')
-rw-r--r-- | lib/CodeGen/SelectionDAG/DAGCombiner.cpp | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/lib/CodeGen/SelectionDAG/DAGCombiner.cpp b/lib/CodeGen/SelectionDAG/DAGCombiner.cpp index 8a1dc5d937..6e0cc9f60a 100644 --- a/lib/CodeGen/SelectionDAG/DAGCombiner.cpp +++ b/lib/CodeGen/SelectionDAG/DAGCombiner.cpp @@ -6000,9 +6000,9 @@ void DAGCombiner::GatherAllAliases(SDNode *N, SDValue OriginalChain, // Get alias information for node. SDValue Ptr; - int64_t Size; - const Value *SrcValue; - int SrcValueOffset; + int64_t Size = 0; + const Value *SrcValue = 0; + int SrcValueOffset = 0; bool IsLoad = FindAliasInfo(N, Ptr, Size, SrcValue, SrcValueOffset); // Starting off. @@ -6028,9 +6028,9 @@ void DAGCombiner::GatherAllAliases(SDNode *N, SDValue OriginalChain, case ISD::STORE: { // Get alias information for Chain. SDValue OpPtr; - int64_t OpSize; - const Value *OpSrcValue; - int OpSrcValueOffset; + int64_t OpSize = 0; + const Value *OpSrcValue = 0; + int OpSrcValueOffset = 0; bool IsOpLoad = FindAliasInfo(Chain.getNode(), OpPtr, OpSize, OpSrcValue, OpSrcValueOffset); |