We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 61e88b3 commit a15e79fCopy full SHA for a15e79f
ext/liquid_c/vm.c
@@ -377,6 +377,7 @@ static VALUE vm_render_until_error(VALUE uncast_args)
377
ip += 3;
378
args->ip = ip;
379
args->const_ptr = const_ptr;
380
+ args->tags_ptr = tags_ptr;
381
break;
382
case OP_POP_WRITE:
383
{
@@ -408,7 +409,8 @@ VALUE liquid_vm_evaluate(VALUE context, vm_assembler_t *code)
408
409
vm_render_until_error_args_t args = {
410
.vm = vm,
411
.const_ptr = (const size_t *)code->constants.data,
- .ip = code->instructions.data
412
+ .ip = code->instructions.data,
413
+ .tags_ptr = (const VALUE *)code->tags.data
414
};
415
vm_render_until_error((VALUE)&args);
416
VALUE ret = vm_stack_pop(vm);
0 commit comments