From: nasm-bot f. C. S. B. <cha...@in...> - 2020-05-05 06:57:42
|
Commit-ID: ee8edad40bbc7687752f7987c63b5d9087cf9151 Gitweb: http://repo.or.cz/w/nasm.git?a=commitdiff;h=ee8edad40bbc7687752f7987c63b5d9087cf9151 Author: Chang S. Bae <cha...@in...> AuthorDate: Wed, 22 Apr 2020 00:07:58 +0000 Committer: Chang S. Bae <cha...@in...> CommitDate: Wed, 22 Apr 2020 00:08:28 +0000 test: Add BR3392661 Suggested-by: <ma...@ou...> Link: https://bugzilla.nasm.us/show_bug.cgi?id=3392661 Signed-off-by: Chang S. Bae <cha...@in...> --- test/br3392661.asm | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/test/br3392661.asm b/test/br3392661.asm new file mode 100644 index 00000000..9a349d19 --- /dev/null +++ b/test/br3392661.asm @@ -0,0 +1,8 @@ +section .text + +global _start + +_start: + mov rdi, 0 ; Exit status + mov rax, 60 ; Exit syscall number + syscall |