Re: [PATCH][ARM] Use %wd format for lane printing in bounds_check

2015-08-19 Thread Ramana Radhakrishnan
On 14/08/15 10:56, Kyrill Tkachov wrote: > Hi all, > > I'm seeing these warnings when building arm.c: > warning: format ‘%lld’ expects argument of type ‘long long int’, but argument > 5 has type ‘long int’ [-Wformat=] > > These appear in the bounds_check function when it tries to print out >

[PATCH][ARM] Use %wd format for lane printing in bounds_check

2015-08-14 Thread Kyrill Tkachov
Hi all, I'm seeing these warnings when building arm.c: warning: format ‘%lld’ expects argument of type ‘long long int’, but argument 5 has type ‘long int’ [-Wformat=] These appear in the bounds_check function when it tries to print out HOST_WIDE_INTs using the %lld format. I believe the right