Skip to content
Snippets Groups Projects
Commit edfd6975 authored by Diego Biurrun's avatar Diego Biurrun
Browse files

Simplify MANGLE macro preprocessor condition checks.

Originally committed as revision 12470 to svn://svn.ffmpeg.org/ffmpeg/trunk
parent 7edd384f
No related branches found
No related tags found
No related merge requests found
...@@ -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 */
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment