Skip to content

Commit a375e18

Browse files
committed
Don't look up something we already have.
1 parent 6dc6dc9 commit a375e18

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/ops/nqp.ops

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1234,7 +1234,7 @@ inline op stable_publish_vtable_handler_mapping(in PMC, in PMC) :base_core {
12341234
st->parrot_vtable_handler_mapping[idx].class_handle = class_handle;
12351235
st->parrot_vtable_handler_mapping[idx].attr_name = attr_name;
12361236
st->parrot_vtable_handler_mapping[idx].hint =
1237-
REPR(class_handle)->hint_for(interp, STABLE(target), class_handle, attr_name);
1237+
REPR(class_handle)->hint_for(interp, st, class_handle, attr_name);
12381238
}
12391239
else
12401240
Parrot_ex_throw_from_c_args(interp, NULL, EXCEPTION_INVALID_OPERATION,

0 commit comments

Comments
 (0)