}
if (Offset) { // We could handle this case, but we don't for now...
- std::cerr << "UNIMP: Trying to merge a growth type into offset != 0: "
- << "Collapsing!\n";
+ DEBUG(std::cerr << "UNIMP: Trying to merge a growth type into "
+ << "offset != 0: Collapsing!\n");
foldNodeCompletely();
return true;
}
}
-
- std::cerr << "MergeTypeInfo Folding OrigTy: " << Ty.Ty
- << "\n due to:" << NewTy << " @ " << Offset << "!\n";
- std::cerr << "SubType: " << SubType << "\n\n";
+ DEBUG(std::cerr << "MergeTypeInfo Folding OrigTy: " << Ty.Ty
+ << "\n due to:" << NewTy << " @ " << Offset << "!\n"
+ << "SubType: " << SubType << "\n\n");
foldNodeCompletely();
return true;
if (N == this) {
// We cannot merge two pieces of the same node together, collapse the node
// completely.
- std::cerr << "Attempting to merge two chunks of the same node together!\n";
+ DEBUG(std::cerr << "Attempting to merge two chunks of"
+ << " the same node together!\n");
foldNodeCompletely();
return;
}