From: Amara Emerson Date: Mon, 7 Dec 2020 20:47:28 +0000 (-0800) Subject: [AArch64] Fix some minor coding style issues in AArch64CompressJumpTables X-Git-Tag: llvmorg-13-init~4136 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=2ac4d0f45a2a301163ca53f3e23e675f4f5bdbd3;p=platform%2Fupstream%2Fllvm.git [AArch64] Fix some minor coding style issues in AArch64CompressJumpTables --- diff --git a/llvm/lib/Target/AArch64/AArch64CompressJumpTables.cpp b/llvm/lib/Target/AArch64/AArch64CompressJumpTables.cpp index 57dc8a4..c265592 100644 --- a/llvm/lib/Target/AArch64/AArch64CompressJumpTables.cpp +++ b/llvm/lib/Target/AArch64/AArch64CompressJumpTables.cpp @@ -59,7 +59,7 @@ public: } }; char AArch64CompressJumpTables::ID = 0; -} +} // namespace INITIALIZE_PASS(AArch64CompressJumpTables, DEBUG_TYPE, "AArch64 compress jump tables pass", false, false) @@ -104,7 +104,7 @@ bool AArch64CompressJumpTables::compressJumpTable(MachineInstr &MI, int MaxOffset = std::numeric_limits::min(), MinOffset = std::numeric_limits::max(); MachineBasicBlock *MinBlock = nullptr; - for (auto Block : JT.MBBs) { + for (auto *Block : JT.MBBs) { int BlockOffset = BlockInfo[Block->getNumber()]; assert(BlockOffset % 4 == 0 && "misaligned basic block"); @@ -124,13 +124,14 @@ bool AArch64CompressJumpTables::compressJumpTable(MachineInstr &MI, } int Span = MaxOffset - MinOffset; - auto AFI = MF->getInfo(); + auto *AFI = MF->getInfo(); if (isUInt<8>(Span / 4)) { AFI->setJumpTableEntryInfo(JTIdx, 1, MinBlock->getSymbol()); MI.setDesc(TII->get(AArch64::JumpTableDest8)); ++NumJT8; return true; - } else if (isUInt<16>(Span / 4)) { + } + if (isUInt<16>(Span / 4)) { AFI->setJumpTableEntryInfo(JTIdx, 2, MinBlock->getSymbol()); MI.setDesc(TII->get(AArch64::JumpTableDest16)); ++NumJT16;