From 4048c64306e23b622443bbe7293057a9b07a13bb Mon Sep 17 00:00:00 2001 From: Kazu Hirata Date: Tue, 12 Nov 2024 10:09:42 -0800 Subject: [llvm] Remove redundant control flow statements (NFC) (#115831) Identified with readability-redundant-control-flow. --- llvm/lib/Transforms/Utils/BasicBlockUtils.cpp | 1 - 1 file changed, 1 deletion(-) (limited to 'llvm/lib/Transforms/Utils/BasicBlockUtils.cpp') diff --git a/llvm/lib/Transforms/Utils/BasicBlockUtils.cpp b/llvm/lib/Transforms/Utils/BasicBlockUtils.cpp index 7bffd4d..1454305 100644 --- a/llvm/lib/Transforms/Utils/BasicBlockUtils.cpp +++ b/llvm/lib/Transforms/Utils/BasicBlockUtils.cpp @@ -425,7 +425,6 @@ DbgVariableRecordsRemoveRedundantDbgInstrsUsingBackwardScan(BasicBlock *BB) { } ToBeRemoved.push_back(&DVR); - continue; } // Sequence with consecutive dbg.value instrs ended. Clear the map to // restart identifying redundant instructions if case we find another -- cgit v1.1