Simplify MANGLE macro preprocessor condition checks.

Originally committed as revision 12470 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
Diego Biurrun 2008-03-17 09:22:11 +00:00
parent 7edd384f1d
commit edfd6975cf
1 changed files with 2 additions and 4 deletions

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 */