diff options
author | Olivier Gayot <duskcoder@gmail.com> | 2014-02-14 01:55:15 +0100 |
---|---|---|
committer | Olivier Gayot <duskcoder@gmail.com> | 2014-02-14 03:24:56 +0100 |
commit | 7a20f366cde4717d0decc6228eb844af1f5ef2a0 (patch) | |
tree | 195c2d21d9807cba8d4a00b95133991557e48027 | |
parent | 08bda4d37253d9c187372100a7017447735e0096 (diff) |
consider that list_init is a leaf function
leaf functions do not have to contain a prologue nor an epilogue.
-rw-r--r-- | list.asm | 3 |
1 files changed, 0 insertions, 3 deletions
@@ -56,12 +56,9 @@ section .text list_init: ;; {{{ - enter 0, 0 mov QWORD [rdi + list_t.first], 0 ; first = NULL mov DWORD [rdi + list_t.size], 0 ; size = 0 - - leave ret ;; }}} |