summaryrefslogtreecommitdiff
path: root/libavutil/internal.h
diff options
context:
space:
mode:
authorDiego Biurrun <diego@biurrun.de>2008-03-17 09:22:11 +0000
committerDiego Biurrun <diego@biurrun.de>2008-03-17 09:22:11 +0000
commitedfd6975cfdff72cf400f76b91a945e563360e76 (patch)
tree6e947382b7bba74a0f91564ac01cdd773ab64718 /libavutil/internal.h
parent7edd384f1dcd6eaf5e5b3df16ed608de6e860cb9 (diff)
Simplify MANGLE macro preprocessor condition checks.
Originally committed as revision 12470 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavutil/internal.h')
-rw-r--r--libavutil/internal.h6
1 files changed, 2 insertions, 4 deletions
diff --git a/libavutil/internal.h b/libavutil/internal.h
index d98ea7898c..80d3d4114c 100644
--- a/libavutil/internal.h
+++ b/libavutil/internal.h
@@ -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 */