aboutsummaryrefslogtreecommitdiff
path: root/S/str_diff.S
blob: a90724ed08c8a4b1bf8506d42530ec4c4906f66d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
.globl str_diff
.type	str_diff, @function
str_diff:
	pushl	%edi
	pushl	%esi
	movl	12(%esp), %esi
	movl	16(%esp), %edi
.L1:	
	lodsb
	scasb
	jne	.L2
	testb	%al,%al
	jne	.L1
	xorl	%eax,%eax
	jmp	.L3
.L2:	
	sbbl	%eax,%eax
	orb	$1,%al
.L3:
	popl	%esi
	popl	%edi
	ret