We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3e66070 commit a3ad61dCopy full SHA for a3ad61d
llvm/lib/Target/Hexagon/HexagonConstPropagation.cpp
@@ -170,10 +170,12 @@ namespace {
170
bool convertToProperty();
171
};
172
173
+#ifndef NDEBUG
174
raw_ostream &operator<< (raw_ostream &os, const LatticeCell &L) {
175
L.print(os);
176
return os;
177
}
178
+#endif
179
180
class MachineConstEvaluator;
181
@@ -463,6 +465,7 @@ bool LatticeCell::convertToProperty() {
463
465
return true;
464
466
467
468
469
void LatticeCell::print(raw_ostream &os) const {
470
if (isProperty()) {
471
os << "{ ";
@@ -500,6 +503,7 @@ void LatticeCell::print(raw_ostream &os) const {
500
503
501
504
os << " }";
502
505
506
507
508
// "Meet" operation on two cells. This is the key of the propagation
509
// algorithm.
0 commit comments