projects
/
platform
/
upstream
/
libav.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
7edd384
)
Simplify MANGLE macro preprocessor condition checks.
author
Diego Biurrun
<diego@biurrun.de>
Mon, 17 Mar 2008 09:22:11 +0000
(09:22 +0000)
committer
Diego Biurrun
<diego@biurrun.de>
Mon, 17 Mar 2008 09:22:11 +0000
(09:22 +0000)
Originally committed as revision 12470 to svn://svn.ffmpeg.org/ffmpeg/trunk
libavutil/internal.h
patch
|
blob
|
history
diff --git
a/libavutil/internal.h
b/libavutil/internal.h
index d98ea7898ca50e4f7b4e342264d375188860e652..80d3d4114c440afd6382690d582260d78ddfef32 100644
(file)
--- 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 */