diff options
author | Mattias Andrée <maandree@kth.se> | 2016-02-10 16:50:06 +0100 |
---|---|---|
committer | Mattias Andrée <maandree@kth.se> | 2016-02-10 16:50:06 +0100 |
commit | d7382290d496581ec6bde51a58ba74beb223a019 (patch) | |
tree | 246bef42eb121cae3aee61b56723d5fa15196a5c /x86_64 | |
parent | initial commit (diff) | |
download | optimised-true-d7382290d496581ec6bde51a58ba74beb223a019.tar.gz optimised-true-d7382290d496581ec6bde51a58ba74beb223a019.tar.bz2 optimised-true-d7382290d496581ec6bde51a58ba74beb223a019.tar.xz |
whitespace
Signed-off-by: Mattias Andrée <maandree@kth.se>
Diffstat (limited to 'x86_64')
-rw-r--r-- | x86_64/false.s | 2 | ||||
-rw-r--r-- | x86_64/true.s | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/x86_64/false.s b/x86_64/false.s index daa30a5..03652b5 100644 --- a/x86_64/false.s +++ b/x86_64/false.s @@ -1,7 +1,7 @@ .text .global _start _start: - mov $60,%rax /* 60 is exit(2) */ + mov $60,%rax /* 60 is exit(2) */ mov $1,%rdi /* return code 1 */ syscall diff --git a/x86_64/true.s b/x86_64/true.s index 571d858..860575b 100644 --- a/x86_64/true.s +++ b/x86_64/true.s @@ -1,7 +1,7 @@ .text .global _start _start: - mov $60,%rax /* 60 is exit(2) */ - xor %rdi,%rdi /* return code 0 */ + mov $60,%rax /* 60 is exit(2) */ + xor %rdi,%rdi /* return code 0 */ syscall |