Skip to content

Commit e2ca620

Browse files
authored
Replace getfield for traced_getfield in set! (#134)
1 parent 5d3da81 commit e2ca620

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Interpreter.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -193,7 +193,7 @@ end
193193

194194
function set!(x, path, tostore; emptypath=false)
195195
for p in path
196-
x = getfield(x, p)
196+
x = traced_getfield(x, p)
197197
end
198198

199199
x.mlir_data = tostore

0 commit comments

Comments
 (0)