mirror of
https://github.com/RPCSX/llvm.git
synced 2025-04-03 00:31:49 +00:00
Protect some assertions with NDEBUG rather than DEBUG().
DEBUG() only runs if you pass -debug, but these assertions are generally useful. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@265092 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
6f3ab0f846
commit
77d0bd5a59
@ -7446,12 +7446,13 @@ TargetLowering::LowerCallTo(TargetLowering::CallLoweringInfo &CLI) const {
|
||||
return std::make_pair(SDValue(), SDValue());
|
||||
}
|
||||
|
||||
DEBUG(for (unsigned i = 0, e = CLI.Ins.size(); i != e; ++i) {
|
||||
assert(InVals[i].getNode() &&
|
||||
"LowerCall emitted a null value!");
|
||||
assert(EVT(CLI.Ins[i].VT) == InVals[i].getValueType() &&
|
||||
"LowerCall emitted a value with the wrong type!");
|
||||
});
|
||||
#ifndef NDEBUG
|
||||
for (unsigned i = 0, e = CLI.Ins.size(); i != e; ++i) {
|
||||
assert(InVals[i].getNode() && "LowerCall emitted a null value!");
|
||||
assert(EVT(CLI.Ins[i].VT) == InVals[i].getValueType() &&
|
||||
"LowerCall emitted a value with the wrong type!");
|
||||
}
|
||||
#endif
|
||||
|
||||
SmallVector<SDValue, 4> ReturnValues;
|
||||
if (!CanLowerReturn) {
|
||||
|
Loading…
x
Reference in New Issue
Block a user