Re: [patch] PR54645 move location_adhoc_data map into GC

2012-09-26 Thread Dehao Chen
Sorry, I'll change that with my next patch. Dehao On Wed, Sep 26, 2012 at 12:20 AM, Eric Botcazou wrote: >> gcc/ChangeLog: >> 2012-09-21 Dehao Chen >> >> PR middle-end/54645 >> * c-family/c-pch.c (c_common_read_pch): Rebuild the location_adhoc_data >> map when read in the pc

Re: [patch] PR54645 move location_adhoc_data map into GC

2012-09-26 Thread Eric Botcazou
> gcc/ChangeLog: > 2012-09-21 Dehao Chen > > PR middle-end/54645 > * c-family/c-pch.c (c_common_read_pch): Rebuild the location_adhoc_data > map when read in the pch. Wrong ChangeLog file, you want gcc/c-family/ChangeLog (and remove c-family/). -- Eric Botcazou

Re: [patch] PR54645 move location_adhoc_data map into GC

2012-09-25 Thread Richard Guenther
On Mon, Sep 24, 2012 at 10:23 PM, Hans-Peter Nilsson wrote: > On Fri, 21 Sep 2012, Dehao Chen wrote: >> This patch moves location_adhoc_data into GC, and also rebuild the >> hash table when reading in the PCH. After the patch, PCH can work as >> expected. >> >> Bootstrapped and passed gcc regressi

Re: [patch] PR54645 move location_adhoc_data map into GC

2012-09-24 Thread Hans-Peter Nilsson
On Fri, 21 Sep 2012, Dehao Chen wrote: > This patch moves location_adhoc_data into GC, and also rebuild the > hash table when reading in the PCH. After the patch, PCH can work as > expected. > > Bootstrapped and passed gcc regression tests on x8664_linux. If you have a moment to consider improveme

[patch] PR54645 move location_adhoc_data map into GC

2012-09-21 Thread Dehao Chen
Hi, This patch moves location_adhoc_data into GC, and also rebuild the hash table when reading in the PCH. After the patch, PCH can work as expected. Bootstrapped and passed gcc regression tests on x8664_linux. OK for trunk? Thanks, Dehao libcpp/ChangeLog: 2012-09-21 Dehao Chen PR