Changes between Initial Version and Version 1 of Ticket #1604


Ignore:
Timestamp:
04/10/19 10:52:59 (5 years ago)
Author:
sjamaan
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #1604 – Description

    initial v1  
    11As reported by chickendan on IRC:
    22
    3 ```
     3{{{
    44;; csc -O5 -strict-types -fixnum-arithmetic: 7.964s
    55;; csc -O5 -strict-types:                    8.105s
     
    1616    (print "n=" n " => " (fib n))
    1717    (loop (+ n 1))))
    18 ```
     18}}}
    1919
    2020This program should use fixnum ops when declaring fixnum arithmetic.  Also, when wrapping `fib`'s body in an `assume`, it still compiles to `C_s_a_i_plus` calls rather than `C_a_i_fixnum_plus` or even just `C_s_a_u_i_integer_plus`.