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