Remove redundant comment

The function name collectReferencedFunctions() makes the purpose clear,
so the comment 'Pass 1: Collect all referenced functions' is unnecessary.
This commit is contained in:
Matt Godbolt
2025-06-07 15:23:13 -05:00
parent fdec1bca68
commit 8129a34e55

View File

@@ -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) {