diff options
author | Olivier Gayot <duskcoder@gmail.com> | 2014-02-14 01:45:20 +0100 |
---|---|---|
committer | Olivier Gayot <duskcoder@gmail.com> | 2014-02-14 01:47:26 +0100 |
commit | 7ce8ef940c69188e09e75c317270733611e51eaa (patch) | |
tree | 05c7cae72ef0f755a8afe8ffe8507cb918292e63 /LICENSE | |
parent | f891716549d3ba7985f8afb424efab4eee234130 (diff) |
use local labels wherever possible
this avoids the need of prefixing the redundant label names (e.g. end, loop)
by the name of the function. The latter version is shorter to type and
hides local labels when the object file is desassembled.
Thus, instead of having
function_name:
jmp function_name_end
function_name_end:
we have this
function_name:
jmp .end
.end:
Diffstat (limited to 'LICENSE')
0 files changed, 0 insertions, 0 deletions