diff options
author | David Conrad <lessen42@gmail.com> | 2010-01-12 19:03:09 +0000 |
---|---|---|
committer | David Conrad <lessen42@gmail.com> | 2010-01-12 19:03:09 +0000 |
commit | 28b2866f45649be313eac4efc4005e9a82aec2c3 (patch) | |
tree | 5a0c7766035a0a11633ac2cf7b046085aa3327c3 | |
parent | 9c09546352ceec4ca1ec0f023861bcb5195de8a1 (diff) | |
download | ffmpeg-28b2866f45649be313eac4efc4005e9a82aec2c3.tar.gz |
/nop is illegal with Apple's older version of gas, this was fixed elsewhere
but not here since it was unused before now.
Originally committed as revision 30289 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
-rw-r--r-- | libswscale/x86/yuv2rgb_template.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libswscale/x86/yuv2rgb_template.c b/libswscale/x86/yuv2rgb_template.c index c8d7ca5677..bdc347e799 100644 --- a/libswscale/x86/yuv2rgb_template.c +++ b/libswscale/x86/yuv2rgb_template.c @@ -42,7 +42,7 @@ #define SFENCE "sfence" #else #define MOVNTQ "movq" -#define SFENCE "/nop" +#define SFENCE " # nop" #endif #define YUV2RGB \ |