diff options
author | Suleyman Farajli <suleyman@farajli.net> | 2025-01-02 00:15:21 +0400 |
---|---|---|
committer | Suleyman Farajli <suleyman@farajli.net> | 2025-01-02 00:15:21 +0400 |
commit | 240f2bb235d19e0819bd6e80d61e10b0e03e1be9 (patch) | |
tree | 6e6eb13ac5d3aee9897abbf605513d36b9bd923a /src | |
parent | 0652ff24200cbf4e06b6a4135351d9add419776a (diff) |
small style change
Diffstat (limited to 'src')
-rw-r--r-- | src/main.go | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/main.go b/src/main.go index e4dfbff..3f01fa2 100644 --- a/src/main.go +++ b/src/main.go @@ -255,15 +255,15 @@ func X86_64map(op Operation) string{ buf += "\tpop rsi\n" buf += "\tpop rdx\n" buf += "\tpop r10\n" - buf +="\tpop r8\n" - buf +="\tpop r9\n" + buf += "\tpop r8\n" + buf += "\tpop r9\n" case 6: buf += "\tpop rax\n" buf += "\tpop rdi\n" buf += "\tpop rsi\n" buf += "\tpop rdx\n" buf += "\tpop r10\n" - buf +="\tpop r8\n" + buf += "\tpop r8\n" case 5: buf += "\tpop rax\n" buf += "\tpop rdi\n" |