]> gitweb.factorcode.org Git - factor.git/blobdiff - vm/quotations.hpp
audio.engine.test: cleanup using
[factor.git] / vm / quotations.hpp
index a5a5f71f68ed426158882a6e6393aa18f960c870..3c659126dc0ddf53e64a70403dc6be449a73bf27 100644 (file)
@@ -4,13 +4,12 @@ struct quotation_jit : public jit {
   data_root<array> elements;
   bool compiling, relocate;
 
-  /* Allocates memory */
+  // Allocates memory
   quotation_jit(cell owner, bool compiling, bool relocate, factor_vm* vm)
-      : jit(code_block_unoptimized, owner, vm),
+      : jit(owner, vm),
         elements(false_object, vm),
         compiling(compiling),
         relocate(relocate) {}
-  ;
 
   cell nth(cell index);
   void init_quotation(cell quot);
@@ -32,12 +31,12 @@ struct quotation_jit : public jit {
   bool stack_frame_p();
   void iterate_quotation();
 
-  /* Allocates memory */
+  // Allocates memory
   void word_call(cell word) {
     emit_with_literal(parent->special_objects[JIT_WORD_CALL], word);
   }
 
-  /* Allocates memory (literal(), emit())*/
+  // Allocates memory (literal(), emit())
   void word_jump(cell word_) {
     data_root<word> word(word_, parent);
 #ifndef FACTOR_AMD64