Commit 8196761a authored by diego's avatar diego

Simplify MANGLE macro preprocessor condition checks.


git-svn-id: file:///var/local/repositories/ffmpeg/trunk@12470 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent 9e3dff9a
...@@ -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