about summary refs log tree commit diff stats
path: root/test/samples/x86_32/dg_test_02.S
blob: 164dd90af67925b68f37bc5fc2df2774a04b0b0f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
main:
	MOV ECX, 0x1
	JZ lbl2
lbl1:
	MOV EBX, 0x2
	JMP end
lbl2:
	MOV EBX, 0x3
	JMP end
end:
	LEA EAX, DWORD PTR [EBX + ECX]
	RET