Changes between Initial Version and Version 1 of Ticket #1604
- Timestamp:
- 04/10/19 10:52:59 (6 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #1604 – Description
initial v1 1 1 As reported by chickendan on IRC: 2 2 3 ``` 3 {{{ 4 4 ;; csc -O5 -strict-types -fixnum-arithmetic: 7.964s 5 5 ;; csc -O5 -strict-types: 8.105s … … 16 16 (print "n=" n " => " (fib n)) 17 17 (loop (+ n 1)))) 18 ``` 18 }}} 19 19 20 20 This 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`.