Simplify MANGLE macro preprocessor condition checks.

Originally committed as revision 12470 to svn://svn.ffmpeg.org/ffmpeg/trunk
pull/126/head
Diego Biurrun 17 years ago
parent 7edd384f1d
commit edfd6975cf
  1. 6
      libavutil/internal.h

@ -127,12 +127,10 @@
# else
# define MANGLE(a) "_" #a
# endif
#else
# if defined(ARCH_X86_64) && defined(PIC)
#elif defined(ARCH_X86_64) && defined(PIC)
# define MANGLE(a) #a"(%%rip)"
# else
#else
# define MANGLE(a) #a
# endif
#endif
/* debug stuff */

Loading…
Cancel
Save