view nasmbuild/nasm-2.13rc9/test/br3041451.asm @ 10554:587a0a262d22

<moonythedwarf> ` cd nasmbuild; tar -xf nasm.tar.gz
author HackBot
date Thu, 30 Mar 2017 20:58:41 +0000
parents
children
line wrap: on
line source

;Testname=br3041451; Arguments=-Ox -fbin -obr3041451.bin; Files=stdout stderr br3041451.bin

	[bits 64]

	;
	; HIT: Maximum possible value
	%assign i 0
	%rep ((1<<62)-1)
		mov rax, i
		%assign i i+1
		%if i == 2
			%exitrep
		%endif
	%endrep

	;
	; MISS: It's negative
	%assign i 0
	%rep 0xffffFFFFffffFFFE
		mov rax, 0xffffFFFFffffFFFE
		%assign i i+1
		%if i == 2
			%exitrep
		%endif
	%endrep

	;
	; MISS: It's negative
	%assign i 0
	%rep 0xffffFFFFffffFFFF
		db i
		%assign i i+1
		%if i == 2
			%exitrep
		%endif
	%endrep 

	;
	; MISS: It's negative
	%assign i 0
	%rep -2
		db i
		%assign i i+1
		%if i == 2
			%exitrep
		%endif
	%endrep

	;
	; MISS: It's negative
	%assign i 0
	%rep -1
		db i
		%assign i i+1
		%if i == 2
			%exitrep
		%endif
	%endrep