Lines Matching refs:fib
280 # Recursive fib, we could do this before.
281 def fib(x)
285 fib(x-1)+fib(x-2);
287 # Iterative fib.
449 for our recursive fib function. Before the optimization:
453 define double @fib(double %x) {
469 %calltmp = call double @fib(double %subtmp)
472 %calltmp6 = call double @fib(double %subtmp5)
494 define double @fib(double %x) {
506 %calltmp = call double @fib(double %subtmp)
508 %calltmp6 = call double @fib(double %subtmp5)
525 define double @fib(double %x) {
534 %calltmp = call double @fib(double %subtmp)
536 %calltmp6 = call double @fib(double %subtmp5)
856 With this, we completed what we set out to do. Our nice iterative fib