vm: unwind-native-frames is special

Fixes #457
db4
Joe Groff 2011-12-19 16:54:25 -08:00
parent ebb722bf56
commit f513894435
1 changed files with 2 additions and 1 deletions

View File

@ -89,7 +89,8 @@ bool quotation_jit::special_subprimitive_p(cell obj)
return obj == parent->special_objects[SIGNAL_HANDLER_WORD]
|| obj == parent->special_objects[LEAF_SIGNAL_HANDLER_WORD]
|| obj == parent->special_objects[FFI_SIGNAL_HANDLER_WORD]
|| obj == parent->special_objects[FFI_LEAF_SIGNAL_HANDLER_WORD];
|| obj == parent->special_objects[FFI_LEAF_SIGNAL_HANDLER_WORD]
|| obj == parent->special_objects[UNWIND_NATIVE_FRAMES_WORD];
}
bool quotation_jit::word_stack_frame_p(cell obj)