VM: get_entry_point is unused

db4
Björn Lindqvist 2015-07-12 21:02:41 +02:00
parent c69e1a6e93
commit d608f3377b
2 changed files with 0 additions and 6 deletions

View File

@ -17,11 +17,6 @@ void factor_vm::c_to_factor(cell 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) {
tagged<word> entry_point_word(special_objects[UNWIND_NATIVE_FRAMES_WORD]);
cell func = entry_point_word->entry_point;

View File

@ -700,7 +700,6 @@ struct factor_vm {
// entry points
void c_to_factor(cell quot);
template <typename Func> Func get_entry_point(cell n);
void unwind_native_frames(cell quot, cell to);
cell get_fpu_state();
void set_fpu_state(cell state);