diff --git a/vm/errors.cpp b/vm/errors.cpp index 6d5b91dcf0..7869b79b58 100755 --- a/vm/errors.cpp +++ b/vm/errors.cpp @@ -176,9 +176,4 @@ void factor_vm::handle_safepoint() general_error(ERROR_SIGNAL,from_unsigned_cell(signal),false_object); } -void factor_vm::primitive_guard_safepoint() -{ - code->guard_safepoint(); -} - } diff --git a/vm/primitives.hpp b/vm/primitives.hpp index ea02c07f6c..e9965c2f3b 100644 --- a/vm/primitives.hpp +++ b/vm/primitives.hpp @@ -89,7 +89,6 @@ namespace factor _(ftell) \ _(full_gc) \ _(fwrite) \ - _(guard_safepoint) \ _(identity_hashcode) \ _(innermost_stack_frame_executing) \ _(innermost_stack_frame_scan) \ diff --git a/vm/vm.hpp b/vm/vm.hpp index c1b535729f..ae0d73541d 100755 --- a/vm/vm.hpp +++ b/vm/vm.hpp @@ -184,7 +184,6 @@ struct factor_vm void fp_signal_handler_impl(); void enqueue_safepoint_signal(cell signal); void handle_safepoint(); - void primitive_guard_safepoint(); // bignum int bignum_equal_p(bignum * x, bignum * y);