From: Josh Coalson Date: Wed, 30 May 2001 00:47:55 +0000 (+0000) Subject: fix jump distances X-Git-Tag: 1.2.0~2330 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=7042adb44207f33032c31af0f39431b73d2aa11a;p=platform%2Fupstream%2Fflac.git fix jump distances --- diff --git a/src/libFLAC/i386/lpc_asm.s b/src/libFLAC/i386/lpc_asm.s index e2518c3..6904e95 100644 --- a/src/libFLAC/i386/lpc_asm.s +++ b/src/libFLAC/i386/lpc_asm.s @@ -299,7 +299,7 @@ cident FLAC__lpc_compute_residual_from_qlp_coefficients_asm_i386: mov ebx, [esp + 24] ; ebx = data_len test ebx, ebx - jz .end ; do nothing if data_len == 0 + jz near .end ; do nothing if data_len == 0 .begin: cmp eax, byte 1 jg short .i_1more @@ -696,7 +696,7 @@ cident FLAC__lpc_restore_signal_asm_i386: mov ebx, [esp + 24] ; ebx = data_len test ebx, ebx - jz .end ; do nothing if data_len == 0 + jz near .end ; do nothing if data_len == 0 .begin: cmp eax, byte 1 @@ -901,7 +901,7 @@ cident FLAC__lpc_restore_signal_asm_i386_mmx: mov ebx, [esp + 24] test ebx, ebx - jz .end ; do nothing if data_len == 0 + jz near .end ; do nothing if data_len == 0 cmp eax, 4 jb near FLAC__lpc_restore_signal_asm_i386.begin