Commit 8c5ed7a6 authored by Mans Rullgard's avatar Mans Rullgard

mem: fix typo in check for __ICC

Signed-off-by: 's avatarMans Rullgard <mans@mansr.com>
parent f181662d
......@@ -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__)
......
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