Removed unused (in non-debug builds) variable.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@362775
91177308-0d34-0410-b5e6-
96231b3b80d8
Type *Ty = LoopCountInit->getType();
Function *LoopIter =
Intrinsic::getDeclaration(M, Intrinsic::set_loop_iterations, Ty);
- Value *Call = Builder.CreateCall(LoopIter, LoopCountInit);
- LLVM_DEBUG(dbgs() << "HWLoops: Iteration set: " << *Call << "\n");
+ Builder.CreateCall(LoopIter, LoopCountInit);
}
void HardwareLoop::InsertLoopDec() {