From 4f71f59eb293313f17db342252ac6dea629f7a2e Mon Sep 17 00:00:00 2001 From: Jameson Nash Date: Sat, 3 May 2014 22:54:00 -0400 Subject: [PATCH] fix typo --- base/inference.jl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/base/inference.jl b/base/inference.jl index 9a4adb61ee19d..a56a627bc7183 100644 --- a/base/inference.jl +++ b/base/inference.jl @@ -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)