From 9f137c66d463ae10c2dfbfbbec115799fc47924d Mon Sep 17 00:00:00 2001 From: Joe Groff Date: Wed, 21 Dec 2011 13:25:05 -0800 Subject: [PATCH] vm: fashion brigade --- vm/inline_cache.cpp | 16 ++++++++-------- vm/quotations.cpp | 2 +- 2 files changed, 9 insertions(+), 9 deletions(-) diff --git a/vm/inline_cache.cpp b/vm/inline_cache.cpp index 1f06cf3a15..5d09d200fa 100755 --- a/vm/inline_cache.cpp +++ b/vm/inline_cache.cpp @@ -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 generic_word(generic_word_,parent); data_root methods(methods_,parent); diff --git a/vm/quotations.cpp b/vm/quotations.cpp index 5f44875559..afcc65a489 100755 --- a/vm/quotations.cpp +++ b/vm/quotations.cpp @@ -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)) {