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/Object/WasmObjectFile.cpp | 1 - 1 file changed, 1 deletion(-) (limited to 'llvm/lib/Object/WasmObjectFile.cpp') diff --git a/llvm/lib/Object/WasmObjectFile.cpp b/llvm/lib/Object/WasmObjectFile.cpp index 35f152d..ef19c3c 100644 --- a/llvm/lib/Object/WasmObjectFile.cpp +++ b/llvm/lib/Object/WasmObjectFile.cpp @@ -1242,7 +1242,6 @@ Error WasmObjectFile::parseTypeSection(ReadContext &Ctx) { while (ParamCount--) { uint32_t ParamType = readUint8(Ctx); Sig.Params.push_back(parseValType(Ctx, ParamType)); - continue; } uint32_t ReturnCount = readVaruint32(Ctx); while (ReturnCount--) { -- cgit v1.1