From ed274371604e3321fbe9dcf9dc31dc262f8f34b1 Mon Sep 17 00:00:00 2001 From: James Zern Date: Tue, 2 May 2023 17:32:14 -0700 Subject: neon.h,cosmetics: clear a couple lint warnings Missing space after , [whitespace/comma] [3] Change-Id: Ib8fc05c31cbef5318a752e98ab5106dad55d69e9 --- src/dsp/neon.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/dsp/neon.h b/src/dsp/neon.h index f806a278..14acb404 100644 --- a/src/dsp/neon.h +++ b/src/dsp/neon.h @@ -21,7 +21,7 @@ // Right now, some intrinsics functions seem slower, so we disable them // everywhere except newer clang/gcc or aarch64 where the inline assembly is // incompatible. -#if LOCAL_CLANG_PREREQ(3,8) || LOCAL_GCC_PREREQ(4,9) || WEBP_AARCH64 +#if LOCAL_CLANG_PREREQ(3, 8) || LOCAL_GCC_PREREQ(4, 9) || WEBP_AARCH64 #define WEBP_USE_INTRINSICS // use intrinsics when possible #endif @@ -46,7 +46,7 @@ // if using intrinsics, this flag avoids some functions that make gcc-4.6.3 // crash ("internal compiler error: in immed_double_const, at emit-rtl."). // (probably similar to gcc.gnu.org/bugzilla/show_bug.cgi?id=48183) -#if !(LOCAL_CLANG_PREREQ(3,8) || LOCAL_GCC_PREREQ(4,8) || WEBP_AARCH64) +#if !(LOCAL_CLANG_PREREQ(3, 8) || LOCAL_GCC_PREREQ(4, 8) || WEBP_AARCH64) #define WORK_AROUND_GCC #endif -- cgit v1.2.1