]> gitweb.factorcode.org Git - factor.git/blobdiff - vm/entry_points.cpp
webapps.wiki: adding search bar
[factor.git] / vm / entry_points.cpp
index c09489f906738dc88f3b4d9ca5c8c5d9ab6a6303..05ec2eade8b82394545ea1e6d72912ad27607af4 100644 (file)
@@ -3,10 +3,10 @@
 namespace factor {
 
 void factor_vm::c_to_factor(cell quot) {
-  /* First time this is called, wrap the c-to-factor sub-primitive inside
-     of a callback stub, which saves and restores non-volatile registers
-     per platform ABI conventions, so that the Factor compiler can treat
-     all registers as volatile */
+  // First time this is called, wrap the c-to-factor sub-primitive inside
+  // of a callback stub, which saves and restores non-volatile registers
+  // per platform ABI conventions, so that the Factor compiler can treat
+  // all registers as volatile
   if (!c_to_factor_func) {
     tagged<word> c_to_factor_word(special_objects[C_TO_FACTOR_WORD]);
     code_block* c_to_factor_block = callbacks->add(c_to_factor_word.value(), 0);