diff options
author | Sam Parker <sam.parker@arm.com> | 2019-06-07 08:04:18 +0000 |
---|---|---|
committer | Sam Parker <sam.parker@arm.com> | 2019-06-07 08:04:18 +0000 |
commit | 67f9dc60b8daf69a7119a92b9f525eece0887e4f (patch) | |
tree | efa934d0b9ceec788422f09ee529e93217274cdc /llvm/lib/CodeGen/HardwareLoops.cpp | |
parent | c5ef502ee8160c37823d21e622b2575a5504e815 (diff) | |
download | bcm5719-llvm-67f9dc60b8daf69a7119a92b9f525eece0887e4f.tar.gz bcm5719-llvm-67f9dc60b8daf69a7119a92b9f525eece0887e4f.zip |
Fix for lld buildbot
Removed unused (in non-debug builds) variable.
llvm-svn: 362775
Diffstat (limited to 'llvm/lib/CodeGen/HardwareLoops.cpp')
-rw-r--r-- | llvm/lib/CodeGen/HardwareLoops.cpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/llvm/lib/CodeGen/HardwareLoops.cpp b/llvm/lib/CodeGen/HardwareLoops.cpp index 1d48219029c..df063545f28 100644 --- a/llvm/lib/CodeGen/HardwareLoops.cpp +++ b/llvm/lib/CodeGen/HardwareLoops.cpp @@ -363,8 +363,7 @@ void HardwareLoop::InsertIterationSetup(Value *LoopCountInit, 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() { |