From 8129a34e55b2522ecd509cb066fc7750cb2f9d45 Mon Sep 17 00:00:00 2001 From: Matt Godbolt Date: Sat, 7 Jun 2025 15:23:13 -0500 Subject: [PATCH] Remove redundant comment The function name collectReferencedFunctions() makes the purpose clear, so the comment 'Pass 1: Collect all referenced functions' is unnecessary. --- lib/parsers/asm-parser.ts | 1 - 1 file changed, 1 deletion(-) diff --git a/lib/parsers/asm-parser.ts b/lib/parsers/asm-parser.ts index b5e4a2290..3915d13a4 100644 --- a/lib/parsers/asm-parser.ts +++ b/lib/parsers/asm-parser.ts @@ -761,7 +761,6 @@ export class AsmParser extends AsmRegex implements IAsmParser { asmLines = filters.preProcessBinaryAsmLines(asmLines); } - // Pass 1: Collect all referenced functions const referencedFunctions = this.collectReferencedFunctions(asmLines); for (const line of asmLines) {