From 80777d57d9250376550fa990053032ddb63ad63e Mon Sep 17 00:00:00 2001 From: Shimenkov Mikhail Date: Wed, 4 Jun 2025 11:19:37 +0300 Subject: [PATCH] Fix stdlib compilation Signed-off-by: Shimenkov Mikhail Change-Id: I94f16d07176d786a6f8b81bfb949b49d63394198 --- ets2panda/compiler/lowering/phase.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/ets2panda/compiler/lowering/phase.cpp b/ets2panda/compiler/lowering/phase.cpp index c588a5e35..081702c6b 100644 --- a/ets2panda/compiler/lowering/phase.cpp +++ b/ets2panda/compiler/lowering/phase.cpp @@ -152,6 +152,7 @@ std::vector GetETSPhaseList() new TypeFromLowering, new PrimitiveConversionPhase, new UnionLowering, + new UnboxPhase, // pluginsAfterLowerings has to come at the very end, nothing should go after it new PluginPhase{g_pluginsAfterLowering, ES2PANDA_STATE_LOWERED, &util::Plugin::AfterLowerings}, -- Gitee