Re: version typeinfo for 128bit types

2016-01-16 Thread H.J. Lu
On Mon, Apr 14, 2014 at 2:39 AM, Marc Glisse wrote: > Hello, > > this is a follow-up for this patch: > http://gcc.gnu.org/ml/gcc-patches/2014-04/msg00618.html > > once committed, g++ will generate typeinfo for __float128, and it needs > versioning. While there, I noticed that __int128 has "typeinf

Re: version typeinfo for 128bit types

2014-04-25 Thread Marc Glisse
On Fri, 25 Apr 2014, Jonathan Wakely wrote: On 24/04/14 20:03 +0200, Marc Glisse wrote: Grep seems to indicate that the manual is the only other place that needs updating, but that can wait. Is this patch ok, assuming the tests pass? OK, and sorry for forgetting about that file in the tests

Re: version typeinfo for 128bit types

2014-04-24 Thread Jonathan Wakely
On 24/04/14 20:03 +0200, Marc Glisse wrote: Grep seems to indicate that the manual is the only other place that needs updating, but that can wait. Is this patch ok, assuming the tests pass? OK, and sorry for forgetting about that file in the testsuite!

Re: version typeinfo for 128bit types

2014-04-24 Thread Marc Glisse
On Thu, 24 Apr 2014, Rainer Orth wrote: Marc Glisse writes: this is a follow-up for this patch: http://gcc.gnu.org/ml/gcc-patches/2014-04/msg00618.html once committed, g++ will generate typeinfo for __float128, and it needs versioning. While there, I noticed that __int128 has "typeinfo" but

Re: version typeinfo for 128bit types

2014-04-24 Thread Rainer Orth
Marc Glisse writes: > this is a follow-up for this patch: > http://gcc.gnu.org/ml/gcc-patches/2014-04/msg00618.html > > once committed, g++ will generate typeinfo for __float128, and it needs > versioning. While there, I noticed that __int128 has "typeinfo" but not > "typeinfo name", so I am addi

Re: version typeinfo for 128bit types

2014-04-22 Thread Michael Meissner
On Tue, Apr 22, 2014 at 10:29:55PM +0200, Jakub Jelinek wrote: > On Tue, Apr 22, 2014 at 04:26:23PM -0400, Michael Meissner wrote: > > On Tue, Apr 22, 2014 at 10:06:19PM +0200, Marc Glisse wrote: > > > Hello, > > > > > > as written in the PR, my patch seems wrong for platforms like > > > powerpc t

Re: version typeinfo for 128bit types

2014-04-22 Thread Jakub Jelinek
On Tue, Apr 22, 2014 at 04:26:23PM -0400, Michael Meissner wrote: > On Tue, Apr 22, 2014 at 10:06:19PM +0200, Marc Glisse wrote: > > Hello, > > > > as written in the PR, my patch seems wrong for platforms like > > powerpc that already had the __float128 typeinfo for long double > > with a differen

Re: version typeinfo for 128bit types

2014-04-22 Thread Michael Meissner
On Tue, Apr 22, 2014 at 10:06:19PM +0200, Marc Glisse wrote: > Hello, > > as written in the PR, my patch seems wrong for platforms like > powerpc that already had the __float128 typeinfo for long double > with a different version. The following patch regtested fine on > x86_64, and a hackish cross

Re: version typeinfo for 128bit types

2014-04-22 Thread Marc Glisse
Hello, as written in the PR, my patch seems wrong for platforms like powerpc that already had the __float128 typeinfo for long double with a different version. The following patch regtested fine on x86_64, and a hackish cross-build shows that float128.ver is ignored on powerpc (good). 2014-0

Re: version typeinfo for 128bit types

2014-04-22 Thread Jonathan Wakely
On 22 April 2014 14:55, Marc Glisse wrote: > On Tue, 22 Apr 2014, Jonathan Wakely wrote: > >> On 14 April 2014 11:28, Jonathan Wakely wrote: >>> >>> On 14 April 2014 10:39, Marc Glisse wrote: PR libstdc++/43622 * config/abi/pre/gnu.ver (CXXABI_1.3.9): New version

Re: version typeinfo for 128bit types

2014-04-22 Thread Marc Glisse
On Tue, 22 Apr 2014, Jonathan Wakely wrote: On 14 April 2014 11:28, Jonathan Wakely wrote: On 14 April 2014 10:39, Marc Glisse wrote: PR libstdc++/43622 * config/abi/pre/gnu.ver (CXXABI_1.3.9): New version, new symbols. * config/abi/pre/gnu-versioned-namespace.ver: New

Re: version typeinfo for 128bit types

2014-04-22 Thread Jonathan Wakely
On 14 April 2014 11:28, Jonathan Wakely wrote: > On 14 April 2014 10:39, Marc Glisse wrote: >> >> PR libstdc++/43622 >> * config/abi/pre/gnu.ver (CXXABI_1.3.9): New version, new symbols. >> * config/abi/pre/gnu-versioned-namespace.ver: New symbols. >> * config/abi/po

Re: version typeinfo for 128bit types

2014-04-14 Thread Jonathan Wakely
On 14 April 2014 10:39, Marc Glisse wrote: > > PR libstdc++/43622 > * config/abi/pre/gnu.ver (CXXABI_1.3.9): New version, new symbols. > * config/abi/pre/gnu-versioned-namespace.ver: New symbols. > * config/abi/post/x86_64-linux-gnu/baseline_symbols.txt: Likewise. I

version typeinfo for 128bit types

2014-04-14 Thread Marc Glisse
Hello, this is a follow-up for this patch: http://gcc.gnu.org/ml/gcc-patches/2014-04/msg00618.html once committed, g++ will generate typeinfo for __float128, and it needs versioning. While there, I noticed that __int128 has "typeinfo" but not "typeinfo name", so I am adding it. I manually chec