From: Ronald S. Bultje Date: Fri, 27 Jan 2012 02:50:12 +0000 (+0800) Subject: x86inc.asm: fix typo. X-Git-Url: https://git.sesse.net/?a=commitdiff_plain;h=412b248edb43d435e31d7502e49b9ba9cad50b2d;p=ffmpeg x86inc.asm: fix typo. Assemblers don't understand ! in %if statements. --- diff --git a/libavutil/x86/x86inc.asm b/libavutil/x86/x86inc.asm index 9bbe4461fc5..06a1c9fd7eb 100644 --- a/libavutil/x86/x86inc.asm +++ b/libavutil/x86/x86inc.asm @@ -83,7 +83,7 @@ %if WIN64 %define PIC -%elif !ARCH_X86_64 +%elif ARCH_X86_64 == 0 ; x86_32 doesn't require PIC. ; Some distros prefer shared objects to be PIC, but nothing breaks if ; the code contains a few textrels, so we'll skip that complexity.