File tree Expand file tree Collapse file tree 1 file changed +6
-0
lines changed
Expand file tree Collapse file tree 1 file changed +6
-0
lines changed Original file line number Diff line number Diff line change @@ -483,6 +483,11 @@ def Module.ileanFacetConfig : ModuleFacetConfig ileanFacet :=
483483 addTrace art.trace
484484 return art.path
485485
486+ /-- The `ModuleFacetConfig` for the builtin `irFacet`. -/
487+ def Module.irFacetConfig : ModuleFacetConfig irFacet :=
488+ mkFacetJobConfig <| fetchOLeanCore "ir" (·.ir)
489+ "No `.ir` generated. Ensure the module system is enabled."
490+
486491/-- The `ModuleFacetConfig` for the builtin `cFacet`. -/
487492def Module.cFacetConfig : ModuleFacetConfig cFacet :=
488493 mkFacetJobConfig fun mod => do
@@ -630,6 +635,7 @@ def Module.initFacetConfigs : DNameMap ModuleFacetConfig :=
630635 |>.insert oleanServerFacet oleanServerFacetConfig
631636 |>.insert oleanPrivateFacet oleanPrivateFacetConfig
632637 |>.insert ileanFacet ileanFacetConfig
638+ |>.insert irFacet irFacetConfig
633639 |>.insert cFacet cFacetConfig
634640 |>.insert bcFacet bcFacetConfig
635641 |>.insert coFacet coFacetConfig
You can’t perform that action at this time.
0 commit comments