Re: [testsuite]: Fix gcc.dg/ipa/ipcp-3.c

2011-09-05 Thread Georg-Johann Lay
Martin Jambor schrieb: > Hi, > > On Mon, Sep 05, 2011 at 02:08:18PM +0200, Georg-Johann Lay wrote: >> This test case contains expression 1 << 18 which leads to FAIL for targets >> with >> sizeof(int) < 4. >> >> The mask seems not to be relevant for the test and can be set to, e.g. 14. >> > > I h

Re: [testsuite]: Fix gcc.dg/ipa/ipcp-3.c

2011-09-05 Thread Martin Jambor
Hi, On Mon, Sep 05, 2011 at 02:08:18PM +0200, Georg-Johann Lay wrote: > This test case contains expression 1 << 18 which leads to FAIL for targets > with > sizeof(int) < 4. > > The mask seems not to be relevant for the test and can be set to, e.g. 14. > I have created the testcase by modifying

[testsuite]: Fix gcc.dg/ipa/ipcp-3.c

2011-09-05 Thread Georg-Johann Lay
This test case contains expression 1 << 18 which leads to FAIL for targets with sizeof(int) < 4. The mask seems not to be relevant for the test and can be set to, e.g. 14. Ok? testsuite/ * gcc.dg/ipa/ipcp-3.c (mark_cell): Use mask 1 << 14 instead of 1 << 18. Index: gcc.dg/ipa/ipcp-3.c