From 74a7f04ac3a9c0e3d2e9a394e93d5dcc5c83572b Mon Sep 17 00:00:00 2001 From: Jameson Nash Date: Sat, 14 Feb 2015 23:07:43 -0500 Subject: [PATCH] Revert "fix a gc_wb of a jl_binding_t" This reverts commit c343ca16ab81edc94f076adae6e9fcf13ea800e1. carnaval already fixed this by making changes elsewhere, so it rebased cleanly, but was incorrect --- src/interpreter.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/interpreter.c b/src/interpreter.c index cf8999da0b9fe..9eeb96d1c284e 100644 --- a/src/interpreter.c +++ b/src/interpreter.c @@ -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