Skip to content

Commit

Permalink
Revert "fix a gc_wb of a jl_binding_t"
Browse files Browse the repository at this point in the history
This reverts commit c343ca1.

carnaval already fixed this by making changes elsewhere, so it rebased
cleanly, but was incorrect
  • Loading branch information
vtjnash committed Feb 15, 2015
1 parent e85a1a5 commit 74a7f04
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/interpreter.c
Original file line number Diff line number Diff line change
Expand Up @@ -402,7 +402,7 @@ static jl_value_t *eval(jl_value_t *e, jl_value_t **locals, size_t nl, size_t ng
// temporarily assign so binding is available for field types
check_can_assign_type(b);
b->value = (jl_value_t*)dt;
gc_wb_binding(((void**)b)-1, dt);
gc_wb_binding(b,dt);

JL_TRY {
// operations that can fail
Expand Down

0 comments on commit 74a7f04

Please sign in to comment.