[llvm-commits] [llvm] r72011 - in /llvm/trunk/lib: Analysis/ScalarEvolution.cpp CodeGen/SelectionDAG/DAGCombiner.cpp CodeGen/SelectionDAG/ScheduleDAGSDNodesEmit.cpp
Daniel Dunbar
daniel at zuster.org
Mon May 18 09:43:04 PDT 2009
Author: ddunbar
Date: Mon May 18 11:43:04 2009
New Revision: 72011
URL: http://llvm.org/viewvc/llvm-project?rev=72011&view=rev
Log:
Silence Release-Asserts warnings.
Modified:
llvm/trunk/lib/Analysis/ScalarEvolution.cpp
llvm/trunk/lib/CodeGen/SelectionDAG/DAGCombiner.cpp
llvm/trunk/lib/CodeGen/SelectionDAG/ScheduleDAGSDNodesEmit.cpp
Modified: llvm/trunk/lib/Analysis/ScalarEvolution.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/Analysis/ScalarEvolution.cpp?rev=72011&r1=72010&r2=72011&view=diff
==============================================================================
--- llvm/trunk/lib/Analysis/ScalarEvolution.cpp (original)
+++ llvm/trunk/lib/Analysis/ScalarEvolution.cpp Mon May 18 11:43:04 2009
@@ -3081,6 +3081,7 @@
}
assert(0 && "Unknown SCEV type!");
+ return 0;
}
/// getSCEVAtScope - This is a convenience function which does
Modified: llvm/trunk/lib/CodeGen/SelectionDAG/DAGCombiner.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/CodeGen/SelectionDAG/DAGCombiner.cpp?rev=72011&r1=72010&r2=72011&view=diff
==============================================================================
--- llvm/trunk/lib/CodeGen/SelectionDAG/DAGCombiner.cpp (original)
+++ llvm/trunk/lib/CodeGen/SelectionDAG/DAGCombiner.cpp Mon May 18 11:43:04 2009
@@ -6000,9 +6000,9 @@
// 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 @@
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);
Modified: llvm/trunk/lib/CodeGen/SelectionDAG/ScheduleDAGSDNodesEmit.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/CodeGen/SelectionDAG/ScheduleDAGSDNodesEmit.cpp?rev=72011&r1=72010&r2=72011&view=diff
==============================================================================
--- llvm/trunk/lib/CodeGen/SelectionDAG/ScheduleDAGSDNodesEmit.cpp (original)
+++ llvm/trunk/lib/CodeGen/SelectionDAG/ScheduleDAGSDNodesEmit.cpp Mon May 18 11:43:04 2009
@@ -119,6 +119,7 @@
DstRC, SrcRC);
assert(Emitted && "Unable to issue a copy instruction!\n");
+ (void) Emitted;
}
SDValue Op(Node, ResNo);
@@ -254,6 +255,7 @@
bool Emitted = TII->copyRegToReg(*BB, InsertPos, NewVReg, VReg,
DstRC, SrcRC);
assert(Emitted && "Unable to issue a copy instruction!\n");
+ (void) Emitted;
VReg = NewVReg;
}
}
@@ -445,6 +447,7 @@
DstRC, SrcRC);
assert(Emitted &&
"Unable to issue a copy instruction for a COPY_TO_REGCLASS node!\n");
+ (void) Emitted;
SDValue Op(Node, 0);
bool isNew = VRBaseMap.insert(std::make_pair(Op, NewVReg)).second;
@@ -568,6 +571,7 @@
bool Emitted = TII->copyRegToReg(*BB, InsertPos, DestReg, SrcReg,
DstTRC, SrcTRC);
assert(Emitted && "Unable to issue a copy instruction!\n");
+ (void) Emitted;
break;
}
case ISD::CopyFromReg: {
More information about the llvm-commits
mailing list