forked from OSchip/llvm-project
Silence unused variable warning in release builds. NFC
This commit is contained in:
parent
4667821151
commit
b987fe4972
|
@ -183,6 +183,7 @@ PreservedAnalyses ModuleInlinerPass::run(Module &M,
|
|||
// Loop forward over all of the calls.
|
||||
while (!Calls->empty()) {
|
||||
Function &F = *Calls->front().first->getCaller();
|
||||
(void)F;
|
||||
|
||||
LLVM_DEBUG(dbgs() << "Inlining calls in: " << F.getName() << "\n"
|
||||
<< " Function size: " << F.getInstructionCount()
|
||||
|
|
Loading…
Reference in New Issue