Re: Ping: [patch, avr] Fix unrecognizable insn ICE for avr (PR71103)

2016-05-21 Thread Denis Chertykov
2016-05-20 16:13 GMT+03:00 Pitchumani Sivanupandi : > Ping! > > Note: Removed the garbled characters and added ChangeLog > -- > avr-gcc crashes for following test as it couldn't recognize the > instruction

Ping: [patch, avr] Fix unrecognizable insn ICE for avr (PR71103)

2016-05-20 Thread Pitchumani Sivanupandi
Ping! Note: Removed the garbled characters and added ChangeLog -- avr-gcc crashes for following test as it couldn't recognize the instruction pattern. struct st {   unsigned char uc1;   unsigned int *ui1; }; unsigned int ui1; struct st foo

[patch, avr] Fix unrecognizable insn ICE for avr (PR71103)

2016-05-13 Thread Pitchumani Sivanupandi
avr-gcc crashes for following test as it couldn't recognize the instruction pattern. struct st {   unsigned char uc1;   unsigned int *ui1; }; unsigned int ui1; struct st foo () {   struct st ret;   ret.uc1 = 6;   ret.ui1 =   return ret; } $ avr-gcc -mmcu=atmega328p -O1 test.c (-- snip --)