]> gitweb.factorcode.org Git - factor.git/commitdiff
vm: fashion brigade
authorJoe Groff <arcata@gmail.com>
Wed, 21 Dec 2011 21:25:05 +0000 (13:25 -0800)
committerJoe Groff <arcata@gmail.com>
Wed, 21 Dec 2011 21:25:05 +0000 (13:25 -0800)
vm/inline_cache.cpp
vm/quotations.cpp

index 1f06cf3a1550ed222d3ba75fd747d93c6f2d5a6a..5d09d200fa437095f2ea5dc2c5020cfd19aa0a69 100755 (executable)
@@ -56,10 +56,10 @@ struct inline_cache_jit : public jit {
 
        void emit_check(cell klass);
        void compile_inline_cache(fixnum index,
-                                 cell generic_word_,
-                                 cell methods_,
-                                 cell cache_entries_,
-                                 bool tail_call_p);
+               cell generic_word_,
+               cell methods_,
+               cell cache_entries_,
+               bool tail_call_p);
 };
 
 void inline_cache_jit::emit_check(cell klass)
@@ -76,10 +76,10 @@ void inline_cache_jit::emit_check(cell klass)
 /* index: 0 = top of stack, 1 = item underneath, etc
    cache_entries: array of class/method pairs */
 void inline_cache_jit::compile_inline_cache(fixnum index,
-                                           cell generic_word_,
-                                           cell methods_,
-                                           cell cache_entries_,
-                                           bool tail_call_p)
+       cell generic_word_,
+       cell methods_,
+       cell cache_entries_,
+       bool tail_call_p)
 {
        data_root<word> generic_word(generic_word_,parent);
        data_root<array> methods(methods_,parent);
index 5f44875559a480a2e2e34a493485aabd65847d0c..afcc65a489562ecff3e93450463d93e3bc5f48c5 100755 (executable)
@@ -240,7 +240,7 @@ void quotation_jit::iterate_quotation()
                                push(obj.value());
                        break;
                case QUOTATION_TYPE:
-                       /* 'if' preceeded by two literal quotations (this is why if and ? are
+                       /* 'if' preceded by two literal quotations (this is why if and ? are
                           mutually recursive in the library, but both still work) */
                        if(fast_if_p(i,length))
                        {