Skip to content
This repository was archived by the owner on Feb 2, 2024. It is now read-only.

Commit 30d650a

Browse files
author
Ehsan Totoni
authored
Merge pull request #84 from esc/fix_InlineClosureCallPass
fixing typing for InlineClosureCallPass
2 parents 127645a + 941b4c5 commit 30d650a

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

hpat/compiler.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -221,7 +221,7 @@ def stage_io_pass(self):
221221
def stage_repeat_inline_closure(self):
222222
assert self.func_ir
223223
inline_pass = InlineClosureCallPass(
224-
self.func_ir, self.flags.auto_parallel)
224+
self.func_ir, self.flags.auto_parallel, typed=True)
225225
inline_pass.run()
226226
post_proc = postproc.PostProcessor(self.func_ir)
227227
post_proc.run()

0 commit comments

Comments
 (0)