Browse Source

Simplify MANGLE macro preprocessor condition checks.

Originally committed as revision 12470 to svn://svn.ffmpeg.org/ffmpeg/trunk
tags/v0.5
Diego Biurrun 17 years ago
parent
commit
edfd6975cf
1 changed files with 2 additions and 4 deletions
  1. +2
    -4
      libavutil/internal.h

+ 2
- 4
libavutil/internal.h View File

@@ -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