Skip to content

Commit

Permalink
fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
vtjnash committed Jun 9, 2014
1 parent ec2fa85 commit 4f71f59
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion base/inference.jl
Original file line number Diff line number Diff line change
Expand Up @@ -2304,7 +2304,7 @@ function inlineable(f, e::Expr, atypes, sv, enclosing_ast)
vnew = unique_name(enclosing_ast, ast)
add_variable(enclosing_ast, vnew, aeitype, !islocal)
unshift!(stmts, Expr(:(=), vnew, aei))
argexprs[i] = argtype===Any ? vnew : SymbolNode(vnew,aeitype)
argexprs[i] = aeitype===Any ? vnew : SymbolNode(vnew,aeitype)
stmts_free &= free
elseif !free && !isType(aeitype)
unshift!(stmts, aei)
Expand Down

0 comments on commit 4f71f59

Please sign in to comment.