You've already forked FFmpeg
mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-08-10 06:10:52 +02:00
Allow using DECLARE_ALIGNED with Sun cc.
Originally committed as revision 15509 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
@@ -26,7 +26,7 @@
|
|||||||
#ifndef AVUTIL_MEM_H
|
#ifndef AVUTIL_MEM_H
|
||||||
#define AVUTIL_MEM_H
|
#define AVUTIL_MEM_H
|
||||||
|
|
||||||
#ifdef __ICC
|
#if defined(__ICC) || defined(__SUNPRO_C)
|
||||||
#define DECLARE_ALIGNED(n,t,v) t v __attribute__ ((aligned (n)))
|
#define DECLARE_ALIGNED(n,t,v) t v __attribute__ ((aligned (n)))
|
||||||
#define DECLARE_ASM_CONST(n,t,v) const t __attribute__ ((aligned (n))) v
|
#define DECLARE_ASM_CONST(n,t,v) const t __attribute__ ((aligned (n))) v
|
||||||
#elif defined(__GNUC__)
|
#elif defined(__GNUC__)
|
||||||
|
Reference in New Issue
Block a user