initial draft

This commit is contained in:
2026-06-09 17:28:28 +02:00
commit 087fdb45d5
40 changed files with 4371 additions and 0 deletions
+12
View File
@@ -0,0 +1,12 @@
package opt
import "../ir"
Pass :: enum {
// Intentionally empty in v1. This enum is the stable optimization boundary.
}
run :: proc(module: ^ir.Module, passes: []Pass = nil) {
_ = module
_ = passes
}