mem: fix typo in check for __ICC

Signed-off-by: Mans Rullgard <mans@mansr.com>
This commit is contained in:
Mans Rullgard 2012-09-09 22:47:15 +01:00
parent f181662db9
commit 8c5ed7a66a
1 changed files with 1 additions and 1 deletions

View File

@ -37,7 +37,7 @@
*/
#if defined(__ICC) && _ICC < 1200 || defined(__SUNPRO_C)
#if defined(__ICC) && __ICC < 1200 || defined(__SUNPRO_C)
#define DECLARE_ALIGNED(n,t,v) t __attribute__ ((aligned (n))) v
#define DECLARE_ASM_CONST(n,t,v) const t __attribute__ ((aligned (n))) v
#elif defined(__TI_COMPILER_VERSION__)