diff options
author | Andrew Chambers <andrewchamberss@gmail.com> | 2016-01-16 00:04:45 +1300 |
---|---|---|
committer | Andrew Chambers <andrewchamberss@gmail.com> | 2016-01-16 00:11:34 +1300 |
commit | fc7a3c0d5470cece4a3e444750181f7101cbe98f (patch) | |
tree | 839a6e46fc4d2c24fa0515388e76057b95d533e0 /rt/common.s | |
parent | 199b9cbd18da9e32a3bacdee6266a098036b34be (diff) | |
download | mc-fc7a3c0d5470cece4a3e444750181f7101cbe98f.tar.gz |
minor fixes to rt asm files
- replace spaces with tabs.
- change label references to be rip relative
Diffstat (limited to 'rt/common.s')
-rw-r--r-- | rt/common.s | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/rt/common.s b/rt/common.s index ee202b7..555a243 100644 --- a/rt/common.s +++ b/rt/common.s @@ -40,7 +40,7 @@ count: * argc in %rax, argv in %rbx, dest vector in %rcx */ cvt: - jmp .cvttest + jmp .cvttest .cvtloop: subq $1,%rax movq (%rbx),%r8 @@ -53,5 +53,5 @@ cvt: testq %rax,%rax jnz .cvtloop .cvtdone: - ret + ret |