Skip to content

Commit

Permalink
Fix a thing
Browse files Browse the repository at this point in the history
  • Loading branch information
iamrecursion committed May 21, 2021
1 parent 5d4f813 commit e43ad30
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -280,7 +280,7 @@ object AutomaticParallelism extends IRPass {
)
.newName()
)
val bindings = bindingNames.zip(app.arguments).map { case (bindName, arg) =>
@unused val bindings = bindingNames.zip(app.arguments).map { case (bindName, arg) =>
makeInlinedBindingFor(bindName, arg, mutData, dataflow)
}

Expand All @@ -289,7 +289,7 @@ object AutomaticParallelism extends IRPass {
case (arg: CallArgument.Specified, bindingName) =>
arg.copy(value = bindingName.duplicate())
}
val newApp = app.copy(arguments = newArgs)
@unused val newApp = app.copy(arguments = newArgs)

RewriteException()
}
Expand Down

0 comments on commit e43ad30

Please sign in to comment.