Commit 1c282c81 authored by cehoyos's avatar cehoyos

Allow using DECLARE_ALIGNED with Sun cc.

git-svn-id: file:///var/local/repositories/ffmpeg/trunk@15509 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent 2dcc7105
......@@ -26,7 +26,7 @@
#ifndef 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_ASM_CONST(n,t,v) const t __attribute__ ((aligned (n))) v
#elif defined(__GNUC__)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment