Fix MacIntel build: "/nop" is illegal on Apple's older version of GAS

Patch by Nigel Pearson % nigel A ind P tansu P com P au %
Original thread:
Date: Nov 6, 2006 10:43 PM
Subject: [Ffmpeg-devel] [PATCH] swscale uses /nop, illegal for old versions of GAS


git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@20740 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
gpoirier 2006-11-07 07:07:05 +00:00
parent 3829ecb1a2
commit 1bade46a88
2 changed files with 6 additions and 10 deletions

View File

@ -60,8 +60,8 @@
#define PREFETCH "#"
#define PREFETCHW "#"
#else
#define PREFETCH "/nop"
#define PREFETCHW "/nop"
#define PREFETCH " # nop"
#define PREFETCHW " # nop"
#endif
#endif
@ -77,11 +77,7 @@
#define SFENCE "sfence"
#else
#define MOVNTQ "movq"
#ifdef __APPLE__
#define SFENCE "#"
#else
#define SFENCE "/nop"
#endif
#define SFENCE " # nop"
#endif
static inline void RENAME(rgb24to32)(const uint8_t *src,uint8_t *dst,long src_size)

View File

@ -43,14 +43,14 @@
#define PREFETCH "prefetchnta"
#define PREFETCHW "prefetcht0"
#else
#define PREFETCH "/nop"
#define PREFETCHW "/nop"
#define PREFETCH " # nop"
#define PREFETCHW " # nop"
#endif
#ifdef HAVE_MMX2
#define SFENCE "sfence"
#else
#define SFENCE "/nop"
#define SFENCE " # nop"
#endif
#ifdef HAVE_MMX2