Skip to content
Snippets Groups Projects
Commit 072b14f3 authored by James Almer's avatar James Almer
Browse files

Merge commit '8e234615'


* commit '8e234615':
  libavutil: Hook up the rest of the gcc specific attributes to clang as well

Merged-by: default avatarJames Almer <jamrial@gmail.com>
parents 1ba5e456 8e234615
No related branches found
No related tags found
No related merge requests found
...@@ -66,19 +66,19 @@ ...@@ -66,19 +66,19 @@
# define av_noinline # define av_noinline
#endif #endif
#if AV_GCC_VERSION_AT_LEAST(3,1) #if AV_GCC_VERSION_AT_LEAST(3,1) || defined(__clang__)
# define av_pure __attribute__((pure)) # define av_pure __attribute__((pure))
#else #else
# define av_pure # define av_pure
#endif #endif
#if AV_GCC_VERSION_AT_LEAST(2,6) #if AV_GCC_VERSION_AT_LEAST(2,6) || defined(__clang__)
# define av_const __attribute__((const)) # define av_const __attribute__((const))
#else #else
# define av_const # define av_const
#endif #endif
#if AV_GCC_VERSION_AT_LEAST(4,3) #if AV_GCC_VERSION_AT_LEAST(4,3) || defined(__clang__)
# define av_cold __attribute__((cold)) # define av_cold __attribute__((cold))
#else #else
# define av_cold # define av_cold
...@@ -138,19 +138,19 @@ ...@@ -138,19 +138,19 @@
# define av_used # define av_used
#endif #endif
#if AV_GCC_VERSION_AT_LEAST(3,3) #if AV_GCC_VERSION_AT_LEAST(3,3) || defined(__clang__)
# define av_alias __attribute__((may_alias)) # define av_alias __attribute__((may_alias))
#else #else
# define av_alias # define av_alias
#endif #endif
#if defined(__GNUC__) && !defined(__INTEL_COMPILER) && !defined(__clang__) #if (defined(__GNUC__) || defined(__clang__)) && !defined(__INTEL_COMPILER)
# define av_uninit(x) x=x # define av_uninit(x) x=x
#else #else
# define av_uninit(x) x # define av_uninit(x) x
#endif #endif
#ifdef __GNUC__ #if defined(__GNUC__) || defined(__clang__)
# define av_builtin_constant_p __builtin_constant_p # define av_builtin_constant_p __builtin_constant_p
# define av_printf_format(fmtpos, attrpos) __attribute__((__format__(__printf__, fmtpos, attrpos))) # define av_printf_format(fmtpos, attrpos) __attribute__((__format__(__printf__, fmtpos, attrpos)))
#else #else
......
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