~ppsspp/ppsspp/ffmpeg

« back to all changes in this revision

Viewing changes to linux/mips32/include/libavutil/attributes.h

  • Committer: Sacha
  • Date: 2015-10-30 11:45:30 UTC
  • Revision ID: git-v1:2dadf61aac7ede07b4df5bc11302aadaa70b8ab1
Update linux mips (compiled on Debian 8, gcc 4.9.2, MIPS32r2) to 2.7.2

Show diffs side-by-side

added added

removed removed

Lines of Context:
27
27
#define AVUTIL_ATTRIBUTES_H
28
28
 
29
29
#ifdef __GNUC__
30
 
#    define AV_GCC_VERSION_AT_LEAST(x,y) (__GNUC__ > x || __GNUC__ == x && __GNUC_MINOR__ >= y)
 
30
#    define AV_GCC_VERSION_AT_LEAST(x,y) (__GNUC__ > (x) || __GNUC__ == (x) && __GNUC_MINOR__ >= (y))
31
31
#else
32
32
#    define AV_GCC_VERSION_AT_LEAST(x,y) 0
33
33
#endif