Merge pull request #7258 from JRI98/remove_unused_typedhole_variant

Remove unused code
This commit is contained in:
Richard Feldman 2024-11-29 00:19:49 -05:00 committed by GitHub
commit bfbc9ceef0
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
20 changed files with 5 additions and 57 deletions

View file

@ -209,7 +209,6 @@ impl<'a> LastSeenMap<'a> {
self.set_last_seen(*initializer, stmt);
}
}
Expr::RuntimeErrorFunction(_) => {}
Expr::FunctionPointer { .. } => todo_lambda_erasure!(),
Expr::EmptyArray => {}
}
@ -1003,7 +1002,6 @@ trait Backend<'a> {
} => {
self.build_alloca(*sym, *initializer, *element_layout);
}
Expr::RuntimeErrorFunction(_) => todo!(),
}
}