Advertisement
Guest User

lalala

a guest
Mar 27th, 2017
45
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.69 KB | None | 0 0
  1. .file "padovan.c"
  2. .text
  3. .globl padovan
  4. .type padovan, @function
  5. padovan:
  6. .LFB0:
  7. movl 4(%esp), %edx
  8. movl $0, %eax
  9. padovanL:
  10. .LFB2:
  11. cmpl $2, %edx
  12. jg .L5
  13. addl $1, %eax
  14. ret
  15. .L5:
  16. subl $2, %edx
  17. call padovanL
  18. subl $1, %edx
  19. call padovanL
  20. addl $3, %edx
  21. ret
  22. .LFE0:
  23. .size padovan, .-padovan
  24. .section .rodata
  25. .LC0:
  26. .string "padovan(%d) = %d \n"
  27. .align 4
  28. .LC1:
  29. .string "Formaat: %s waarde aantal_iteraties\n"
  30. .text
  31. .globl main
  32. .type main, @function
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement