vm: fix comments mangled by find & replace

db4
Joe Groff 2011-10-31 18:55:41 -07:00
parent 38a5184fdf
commit 89ea69b61b
1 changed files with 2 additions and 2 deletions

View File

@ -23,8 +23,8 @@ void factor_vm::c_to_factor(cell quot)
template<typename Func> Func factor_vm::get_entry_point(cell n)
{
/* We return word->code->entry_point() and not word->entry_point,
because if counting_profiler is enabled, we don't want to go through the
entry point's counting_profiler stub. This clobbers registers, since entry
because if the counting profiler is enabled, we don't want to go through the
entry point's counting profiler stub. This clobbers registers, since entry
points use the C ABI and not the Factor ABI. */
tagged<word> entry_point_word(special_objects[n]);
return (Func)entry_point_word->code->entry_point();