Skip to content

Commit

Permalink
probably fix #3642
Browse files Browse the repository at this point in the history
  • Loading branch information
JeffBezanson committed Jul 7, 2013
1 parent ec3311a commit 76b8d65
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/codegen.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1782,7 +1782,7 @@ static Value *emit_var(jl_sym_t *sym, jl_value_t *ty, jl_codectx_t *ctx, bool is
return literal_pointer_val(jl_tupleref(ctx->sp, i+1));
}
}
jl_binding_t *jbp;
jl_binding_t *jbp=NULL;
Value *bp = var_binding_pointer(sym, &jbp, false, ctx);
assert(jbp != NULL);
if (jbp->value != NULL) {
Expand All @@ -1806,7 +1806,7 @@ static Value *emit_var(jl_sym_t *sym, jl_value_t *ty, jl_codectx_t *ctx, bool is
if (vi.SAvalue != NULL)
return vi.SAvalue;

jl_binding_t *jbp;
jl_binding_t *jbp=NULL;
Value *bp = var_binding_pointer(sym, &jbp, false, ctx);
assert(jbp == NULL);
if (arg != NULL || // arguments are always defined
Expand Down

0 comments on commit 76b8d65

Please sign in to comment.