From bb59f396f8ca74c7d663c197e99d15bbe9f6e5b6 Mon Sep 17 00:00:00 2001 From: Marc Glisse Date: Tue, 18 Nov 2014 21:20:53 +0100 Subject: re PR libstdc++/43622 (Incomplete C++ library support for __float128) 2014-11-18 Marc Glisse PR libstdc++/43622 gcc/cp/ * rtti.c (emit_support_tinfos): Handle __float128. libstdc++-v3/ * config/abi/pre/float128.ver: New file. * configure.ac: Use float128.ver when relevant. * configure: Regenerate. * testsuite/util/testsuite_abi.cc (check_version): Accept new CXXABI_FLOAT128 version. From-SVN: r217735 --- gcc/cp/ChangeLog | 5 +++++ gcc/cp/rtti.c | 2 ++ 2 files changed, 7 insertions(+) (limited to 'gcc') diff --git a/gcc/cp/ChangeLog b/gcc/cp/ChangeLog index 0628b42..2e18932 100644 --- a/gcc/cp/ChangeLog +++ b/gcc/cp/ChangeLog @@ -1,3 +1,8 @@ +2014-11-18 Marc Glisse + + PR libstdc++/43622 + * rtti.c (emit_support_tinfos): Handle __float128. + 2014-11-18 Jason Merrill PR c++/63925 diff --git a/gcc/cp/rtti.c b/gcc/cp/rtti.c index 0d6dd96..aef71f2 100644 --- a/gcc/cp/rtti.c +++ b/gcc/cp/rtti.c @@ -1547,6 +1547,8 @@ emit_support_tinfos (void) emit_support_tinfo_1 (int_n_trees[ix].signed_type); emit_support_tinfo_1 (int_n_trees[ix].unsigned_type); } + for (tree t = registered_builtin_types; t; t = TREE_CHAIN (t)) + emit_support_tinfo_1 (TREE_VALUE (t)); } /* Finish a type info decl. DECL_PTR is a pointer to an unemitted -- cgit v1.1