Re: [PATCH] [graphite] fix pr61929

2015-07-17 Thread Tobias Grosser
p-mine" } */ + +typedef struct m { + char *A; + char *B; +} mystruct; +mystruct arr[52]; + +void main () {} +void generateICE (void) +{ + int i; + for (i=0; i<52; i++) +{ + arr[i].A = ""; + arr[i].B = 0; +} +} -- 2.1.0.243.g30d45f7 -Original Message-

Re: [PATCH] [graphite] fix pr61929

2015-07-16 Thread Tobias Grosser
On 07/17/2015 12:23 AM, Sebastian Pop wrote: This fixes bootstrap of GCC with BOOT_CFLAGS="-g -O2 -fgraphite-identity -floop-nest-optimize -floop-block -floop-interchange -floop-strip-mine". It passes regstrap on amd64-linux. Ok to commit to trunk? Very nice. this but seems to include multip

[PATCH] [graphite] fix pr61929

2015-07-16 Thread Sebastian Pop
This fixes bootstrap of GCC with BOOT_CFLAGS="-g -O2 -fgraphite-identity -floop-nest-optimize -floop-block -floop-interchange -floop-strip-mine". It passes regstrap on amd64-linux. Ok to commit to trunk? Thanks. 2015-07-15 Aditya Kumar Sebastian Pop PR middle-end/61929