Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRonald S. Bultje <rsbultje@gmail.com>2012-01-27 06:50:12 +0400
committerRonald S. Bultje <rsbultje@gmail.com>2012-01-27 12:33:03 +0400
commit412b248edb43d435e31d7502e49b9ba9cad50b2d (patch)
treea7eecf3ce561ce51d70ca1d96169535f7815f166 /libavutil
parentb5d08c27c37a40887b02728913ca1fa706a6e35c (diff)
x86inc.asm: fix typo.
Assemblers don't understand ! in %if statements.
Diffstat (limited to 'libavutil')
-rw-r--r--libavutil/x86/x86inc.asm2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavutil/x86/x86inc.asm b/libavutil/x86/x86inc.asm
index 9bbe4461fc..06a1c9fd7e 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.