From 31e4eb62b79b063e450d493c1f643f264c24fda2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Henrik=20B=C3=B6ving?= Date: Tue, 27 Jan 2026 19:50:58 +0100 Subject: [PATCH] perf: speed up compiler recompilation (#12196) --- src/Lean/Compiler/LCNF/Main.lean | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/src/Lean/Compiler/LCNF/Main.lean b/src/Lean/Compiler/LCNF/Main.lean index dfc963ab9a..f4f47a9b33 100644 --- a/src/Lean/Compiler/LCNF/Main.lean +++ b/src/Lean/Compiler/LCNF/Main.lean @@ -5,13 +5,15 @@ Authors: Leonardo de Moura -/ module prelude -public import Lean.Compiler.Options -public import Lean.Compiler.IR -public import Lean.Compiler.LCNF.Passes -public import Lean.Compiler.LCNF.ToDecl -public import Lean.Compiler.LCNF.Check +import Lean.Compiler.Options +import Lean.Compiler.IR +import Lean.Compiler.LCNF.Passes +import Lean.Compiler.LCNF.ToDecl +import Lean.Compiler.LCNF.Check import Lean.Meta.Match.MatcherInfo import Lean.Compiler.LCNF.SplitSCC +public import Lean.Compiler.IR.Basic +public import Lean.Compiler.LCNF.CompilerM public section namespace Lean.Compiler.LCNF /--