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 @@
# 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 */
......
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