summaryrefslogtreecommitdiffstats
path: root/yql/essentials/minikql/comp_nodes/mkql_while.cpp
diff options
context:
space:
mode:
authorvvvv <[email protected]>2025-06-23 13:38:54 +0300
committervvvv <[email protected]>2025-06-23 14:22:17 +0300
commit99a63eaece7367f17dac58e66e45043aa641d9f7 (patch)
treed104b51aab8eaf495f95d81525716e34b5bef983 /yql/essentials/minikql/comp_nodes/mkql_while.cpp
parenta731af300f45dd4cb0f3fd3b24c8213fe1425068 (diff)
YQL-20086 minikql
commit_hash:c35c972d6708fb1b3f34fa34a42cdae1ddf11cdc
Diffstat (limited to 'yql/essentials/minikql/comp_nodes/mkql_while.cpp')
-rw-r--r--yql/essentials/minikql/comp_nodes/mkql_while.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/yql/essentials/minikql/comp_nodes/mkql_while.cpp b/yql/essentials/minikql/comp_nodes/mkql_while.cpp
index 441d386fc84..db65a4c618a 100644
--- a/yql/essentials/minikql/comp_nodes/mkql_while.cpp
+++ b/yql/essentials/minikql/comp_nodes/mkql_while.cpp
@@ -564,7 +564,7 @@ public:
block = make;
const auto itemsType = PointerType::getUnqual(list->getType());
- const auto itemsPtr = *this->Stateless || ctx.AlwaysInline ?
+ const auto itemsPtr = *this->Stateless_ || ctx.AlwaysInline ?
new AllocaInst(itemsType, 0U, "items_ptr", &ctx.Func->getEntryBlock().back()):
new AllocaInst(itemsType, 0U, "items_ptr", block);
const auto array = GenNewArray(ctx, copy, itemsPtr, block);