diff options
author | Falk Hüffner <mellum@users.sourceforge.net> | 2002-09-13 10:56:51 +0000 |
---|---|---|
committer | Falk Hüffner <mellum@users.sourceforge.net> | 2002-09-13 10:56:51 +0000 |
commit | a343d33ed6e511935e2b3ce3504b67c4f0fa62c6 (patch) | |
tree | 24478501b961645d674ce71eacd1d900fe7ffffd /libavcodec/alpha | |
parent | bea669e57cdd72b22cfc51514493a90f62dc96c9 (diff) | |
download | ffmpeg-a343d33ed6e511935e2b3ce3504b67c4f0fa62c6.tar.gz |
Due to version renumbering, Alpha builtins aren't supported in thegcc
3.2 release.
Originally committed as revision 937 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/alpha')
-rw-r--r-- | libavcodec/alpha/asm.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/alpha/asm.h b/libavcodec/alpha/asm.h index ceaf0be4aa..2fdbdf13d9 100644 --- a/libavcodec/alpha/asm.h +++ b/libavcodec/alpha/asm.h @@ -52,7 +52,7 @@ struct unaligned_long { uint64_t l; } __attribute__((packed)); #define ldq_u(p) (*(const uint64_t *) (((uint64_t) (p)) & ~7ul)) #define uldq(a) (((const struct unaligned_long *) (a))->l) -#if __GNUC__ >= 3 && __GNUC_MINOR__ >= 2 +#if __GNUC__ >= 3 && __GNUC_MINOR__ >= 3 #define cmpbge __builtin_alpha_cmpbge /* Avoid warnings. */ #define extql(a, b) __builtin_alpha_extql(a, (uint64_t) (b)) |