test: Add BR3392661

Suggested-by: <mae.bdf@outlook.com>
Link: https://bugzilla.nasm.us/show_bug.cgi?id=3392661
Signed-off-by: Chang S. Bae <chang.seok.bae@intel.com>
This commit is contained in:
Chang S. Bae 2020-04-22 00:07:58 +00:00
parent 74b2731f2c
commit ee8edad40b

8
test/br3392661.asm Normal file
View file

@ -0,0 +1,8 @@
section .text
global _start
_start:
mov rdi, 0 ; Exit status
mov rax, 60 ; Exit syscall number
syscall