Commit edfd6975 authored by Diego Biurrun's avatar Diego Biurrun

Simplify MANGLE macro preprocessor condition checks.

Originally committed as revision 12470 to svn://svn.ffmpeg.org/ffmpeg/trunk
parent 7edd384f
...@@ -127,12 +127,10 @@ ...@@ -127,12 +127,10 @@
# else # else
# define MANGLE(a) "_" #a # define MANGLE(a) "_" #a
# endif # endif
#else #elif defined(ARCH_X86_64) && defined(PIC)
# if defined(ARCH_X86_64) && defined(PIC)
# define MANGLE(a) #a"(%%rip)" # define MANGLE(a) #a"(%%rip)"
# else #else
# define MANGLE(a) #a # define MANGLE(a) #a
# endif
#endif #endif
/* debug stuff */ /* debug stuff */
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment