Re: Changing INT to SI mode

2014-03-31 Thread Richard Biener
On Fri, Mar 28, 2014 at 8:18 PM, Mike Stump wrote: > On Mar 28, 2014, at 6:23 AM, K_s, Vishnu wrote: >> Test pr59940.c is failing for AVR target because the test assumes the size >> of int as 32 bit and test expect to generate warnings for overflow and >> conversion while assigning 36-bit and 32

RE: Changing INT to SI mode

2014-03-31 Thread K_s, Vishnu
cast.net] > Sent: Saturday, March 29, 2014 12:49 AM > To: K_s, Vishnu > Cc: gcc-patches@gcc.gnu.org > Subject: Re: Changing INT to SI mode > > On Mar 28, 2014, at 6:23 AM, K_s, Vishnu wrote: > > Test pr59940.c is failing for AVR target because the test assumes the > s

Re: Changing INT to SI mode

2014-03-28 Thread Mike Stump
On Mar 28, 2014, at 6:23 AM, K_s, Vishnu wrote: > Test pr59940.c is failing for AVR target because the test assumes the size > of int as 32 bit and test expect to generate warnings for overflow and > conversion while assigning 36-bit and 32 bit value respectively to variable > si. > Following pat

Changing INT to SI mode

2014-03-28 Thread K_s, Vishnu
Test pr59940.c is failing for AVR target because the test assumes the size of int as 32 bit and test expect to generate warnings for overflow and conversion while assigning 36-bit and 32 bit value respectively to variable si. Following patch define a 32 bit type with SI mode and use it. 2014-03-28