Skip to content

Commit 0392244

Browse files
committed
vm: unwind-native-frames is special
Fixes factor#457
1 parent 2bfde77 commit 0392244

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

vm/quotations.cpp

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,8 @@ bool quotation_jit::special_subprimitive_p(cell obj)
8989
return obj == parent->special_objects[SIGNAL_HANDLER_WORD]
9090
|| obj == parent->special_objects[LEAF_SIGNAL_HANDLER_WORD]
9191
|| obj == parent->special_objects[FFI_SIGNAL_HANDLER_WORD]
92-
|| obj == parent->special_objects[FFI_LEAF_SIGNAL_HANDLER_WORD];
92+
|| obj == parent->special_objects[FFI_LEAF_SIGNAL_HANDLER_WORD]
93+
|| obj == parent->special_objects[UNWIND_NATIVE_FRAMES_WORD];
9394
}
9495

9596
bool quotation_jit::word_stack_frame_p(cell obj)

0 commit comments

Comments
 (0)