Skip to content

Commit a3ad61d

Browse files
committed
Exclude more unused functions from release build.
llvm-svn: 309576
1 parent 3e66070 commit a3ad61d

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

llvm/lib/Target/Hexagon/HexagonConstPropagation.cpp

+4
Original file line numberDiff line numberDiff line change
@@ -170,10 +170,12 @@ namespace {
170170
bool convertToProperty();
171171
};
172172

173+
#ifndef NDEBUG
173174
raw_ostream &operator<< (raw_ostream &os, const LatticeCell &L) {
174175
L.print(os);
175176
return os;
176177
}
178+
#endif
177179

178180
class MachineConstEvaluator;
179181

@@ -463,6 +465,7 @@ bool LatticeCell::convertToProperty() {
463465
return true;
464466
}
465467

468+
#ifndef NDEBUG
466469
void LatticeCell::print(raw_ostream &os) const {
467470
if (isProperty()) {
468471
os << "{ ";
@@ -500,6 +503,7 @@ void LatticeCell::print(raw_ostream &os) const {
500503
}
501504
os << " }";
502505
}
506+
#endif
503507

504508
// "Meet" operation on two cells. This is the key of the propagation
505509
// algorithm.

0 commit comments

Comments
 (0)