We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b9488fe commit 1fd80feCopy full SHA for 1fd80fe
runtime/executor/method.cpp
@@ -1063,7 +1063,9 @@ Error Method::execute_instruction() {
1063
delegate_idx,
1064
n_delegate_,
1065
step_state_.instr_idx);
1066
- BackendExecutionContext backend_execution_context(event_tracer_);
+ BackendExecutionContext backend_execution_context(
1067
+ /*event_tracer*/ event_tracer_,
1068
+ /*temp_allocator*/ memory_manager_->temp_allocator());
1069
err = delegates_[delegate_idx].Execute(
1070
backend_execution_context,
1071
chain.argument_lists_[step_state_.instr_idx].data());
0 commit comments