forked from OSchip/llvm-project
[SDA] Fix -Wunused-function in -DLLVM_ENABLE_ASSERTIONS=off builds
This commit is contained in:
parent
955b926b0b
commit
c36d441b6b
|
@ -417,6 +417,7 @@ struct DivergencePropagator {
|
|||
}
|
||||
};
|
||||
|
||||
#ifndef NDEBUG
|
||||
static void printBlockSet(ConstBlockSet &Blocks, raw_ostream &Out) {
|
||||
Out << "[";
|
||||
bool First = true;
|
||||
|
@ -428,6 +429,7 @@ static void printBlockSet(ConstBlockSet &Blocks, raw_ostream &Out) {
|
|||
}
|
||||
Out << "]";
|
||||
}
|
||||
#endif
|
||||
|
||||
const ControlDivergenceDesc &
|
||||
SyncDependenceAnalysis::getJoinBlocks(const Instruction &Term) {
|
||||
|
|
Loading…
Reference in New Issue