Skip to content
Snippets Groups Projects
Commit 0bfbd699 authored by Kaushik Kulkarni's avatar Kaushik Kulkarni
Browse files

Inplace dict update./

parent 665eafb1
No related branches found
No related tags found
2 merge requests!426Discussion: kernel_callables_v3-edit2,!246WIP: Kernel Callables
Pipeline #
......@@ -2404,8 +2404,7 @@ def specializing_incomplete_callables(kernel):
# only trying to specialize the functions which are not ready
# for codegen
type_inf_mapper(expr)
inferred_functions = {**inferred_functions,
**type_inf_mapper.specialized_functions}
inferred_functions.update(type_inf_mapper.specialized_functions)
elif isinstance(insn, (_DataObliviousInstruction)):
pass
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment