Author: Hans Wennborg Date: 2020-02-12T14:54:32+01:00 New Revision: 2804f355820ed5358694d6952db6650000086024
URL: https://github.com/llvm/llvm-project/commit/2804f355820ed5358694d6952db6650000086024 DIFF: https://github.com/llvm/llvm-project/commit/2804f355820ed5358694d6952db6650000086024.diff LOG: Fix an unused variable warning (cherry picked from commit ea9850b6c71d975935de15bd4128508b260165c5) Added: Modified: llvm/lib/Target/ARM/ARMConstantIslandPass.cpp Removed: ################################################################################ diff --git a/llvm/lib/Target/ARM/ARMConstantIslandPass.cpp b/llvm/lib/Target/ARM/ARMConstantIslandPass.cpp index 634fb89b8e89..66ad120a111f 100644 --- a/llvm/lib/Target/ARM/ARMConstantIslandPass.cpp +++ b/llvm/lib/Target/ARM/ARMConstantIslandPass.cpp @@ -330,8 +330,8 @@ void ARMConstantIslands::verify() { #if !defined(NDEBUG) || defined(LLVM_ENABLE_DUMP) /// print block size and offset information - debugging LLVM_DUMP_METHOD void ARMConstantIslands::dumpBBs() { - BBInfoVector &BBInfo = BBUtils->getBBInfo(); LLVM_DEBUG({ + BBInfoVector &BBInfo = BBUtils->getBBInfo(); for (unsigned J = 0, E = BBInfo.size(); J !=E; ++J) { const BasicBlockInfo &BBI = BBInfo[J]; dbgs() << format("%08x %bb.%u\t", BBI.Offset, J) _______________________________________________ llvm-branch-commits mailing list llvm-branch-commits@lists.llvm.org https://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-branch-commits