From 70769677866a976ea1f047fdf63206fb9951f5a0 Mon Sep 17 00:00:00 2001 From: Reimar Döffinger Date: Sun, 20 Nov 2011 12:57:57 +0100 Subject: Consistently use %ifdef ARCH_X86_64 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit One out of 3 places used ifndef, which is needlessly confusing. Signed-off-by: Reimar Döffinger --- libavcodec/x86/imdct36_sse.asm | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'libavcodec') diff --git a/libavcodec/x86/imdct36_sse.asm b/libavcodec/x86/imdct36_sse.asm index b4b45e6a38..2b8fe57e0b 100644 --- a/libavcodec/x86/imdct36_sse.asm +++ b/libavcodec/x86/imdct36_sse.asm @@ -209,10 +209,10 @@ cglobal imdct36_float_%1, 4,4,9, out, buf, in, win mulps m5, m6, [ps_val1] subps m7, m7, m5 -%ifndef ARCH_X86_64 - subps m5, m0, m3 -%else +%ifdef ARCH_X86_64 SWAP m5, m8 +%else + subps m5, m0, m3 %endif subps m5, m5, m6 -- cgit v1.2.3