Re: optimize several list functions with SIMD intrinsics - Mailing list pgsql-hackers

From Ankit Kumar Pandey
Subject Re: optimize several list functions with SIMD intrinsics
Date
Msg-id 468200fd-a039-5edc-4907-0104d0953f70@gmail.com
Whole thread Raw
In response to Re: optimize several list functions with SIMD intrinsics  (Nathan Bossart <nathandbossart@gmail.com>)
Responses Re: optimize several list functions with SIMD intrinsics  (Nathan Bossart <nathandbossart@gmail.com>)
List pgsql-hackers
On 15/03/23 21:53, Nathan Bossart wrote:

> Did you try building without SIMD support?  This is what I see:

>    list.c: In function ‘list_member_ptr’:
>    list.c:697:2: warning: ISO C90 forbids mixed declarations and code [-Wdeclaration-after-statement]
>      697 |  const ListCell *cell;
>          |  ^~~~~

> If your build doesn't have USE_NO_SIMD defined, this warning won't appear
> because the code in question will be compiled out.

My mistake, I tried with USE_NO_SIMD defined and it showed the warning. Sorry for the noise.

Regards,
Ankit




pgsql-hackers by date:

Previous
From: Nathan Bossart
Date:
Subject: Re: optimize several list functions with SIMD intrinsics
Next
From: Alexander Lakhin
Date:
Subject: Re: Add support for DEFAULT specification in COPY FROM