Optimizer: fix spelling of the Simplifiable protocol

Rename `Simplifyable` -> `Simplifiable`

NFC
This commit is contained in:
Erik Eckstein
2025-02-12 09:01:11 +01:00
parent d25eba2f09
commit 3f95ce9645
35 changed files with 53 additions and 53 deletions

View File

@@ -95,7 +95,7 @@ private func optimize(function: Function, _ context: FunctionPassContext, _ modu
var changed = true
while changed {
changed = runSimplification(on: function, context, preserveDebugInfo: true) { instruction, simplifyCtxt in
if let i = instruction as? OnoneSimplifyable {
if let i = instruction as? OnoneSimplifiable {
i.simplify(simplifyCtxt)
if instruction.isDeleted {
return