VM: get_entry_point is unused
parent
c69e1a6e93
commit
d608f3377b
|
@ -17,11 +17,6 @@ void factor_vm::c_to_factor(cell quot) {
|
||||||
c_to_factor_func(quot);
|
c_to_factor_func(quot);
|
||||||
}
|
}
|
||||||
|
|
||||||
template <typename Func> Func factor_vm::get_entry_point(cell n) {
|
|
||||||
tagged<word> entry_point_word(special_objects[n]);
|
|
||||||
return (Func) entry_point_word->entry_point;
|
|
||||||
}
|
|
||||||
|
|
||||||
void factor_vm::unwind_native_frames(cell quot, cell to) {
|
void factor_vm::unwind_native_frames(cell quot, cell to) {
|
||||||
tagged<word> entry_point_word(special_objects[UNWIND_NATIVE_FRAMES_WORD]);
|
tagged<word> entry_point_word(special_objects[UNWIND_NATIVE_FRAMES_WORD]);
|
||||||
cell func = entry_point_word->entry_point;
|
cell func = entry_point_word->entry_point;
|
||||||
|
|
|
@ -700,7 +700,6 @@ struct factor_vm {
|
||||||
|
|
||||||
// entry points
|
// entry points
|
||||||
void c_to_factor(cell quot);
|
void c_to_factor(cell quot);
|
||||||
template <typename Func> Func get_entry_point(cell n);
|
|
||||||
void unwind_native_frames(cell quot, cell to);
|
void unwind_native_frames(cell quot, cell to);
|
||||||
cell get_fpu_state();
|
cell get_fpu_state();
|
||||||
void set_fpu_state(cell state);
|
void set_fpu_state(cell state);
|
||||||
|
|
Loading…
Reference in New Issue