]> git.ipfire.org Git - thirdparty/gcc.git/commitdiff
libstdc++: Update list of known symbol versions for abi-check
authorJonathan Wakely <jwakely@redhat.com>
Tue, 6 Jun 2023 09:37:32 +0000 (10:37 +0100)
committerJonathan Wakely <jwakely@redhat.com>
Tue, 6 Jun 2023 15:29:22 +0000 (16:29 +0100)
Add the recently added CXXABI_1.3.15 version. Also remove two "frozen"
versions from the latestp list, as no more symbols should be added to
those now.

libstdc++-v3/ChangeLog:

* testsuite/util/testsuite_abi.cc (check_version): Add
CXXABI_1.3.15 symver and make it the latestp. Remove
GLIBCXX_IEEE128_3.4.31 and GLIBCXX_LDBL_3.4.31 from latestp.

libstdc++-v3/testsuite/util/testsuite_abi.cc

index cea6c21743389c05bc75601487a7250aef126a5d..59615dd701e939b6da8a76e782f249569d39cd34 100644 (file)
@@ -233,7 +233,7 @@ check_version(symbol& test, bool added)
       known_versions.push_back("CXXABI_1.3.11");
       known_versions.push_back("CXXABI_1.3.12");
       known_versions.push_back("CXXABI_1.3.13");
-      known_versions.push_back("CXXABI_1.3.14");
+      known_versions.push_back("CXXABI_1.3.15");
       known_versions.push_back("CXXABI_IEEE128_1.3.13");
       known_versions.push_back("CXXABI_TM_1");
       known_versions.push_back("CXXABI_FLOAT128");
@@ -253,10 +253,7 @@ check_version(symbol& test, bool added)
 
       // Check that added symbols are added in the latest pre-release version.
       bool latestp = (test.version_name == "GLIBCXX_3.4.32"
-         // XXX remove next 2 lines when baselines have been regenerated.
-                    || test.version_name == "GLIBCXX_IEEE128_3.4.31"
-                    || test.version_name == "GLIBCXX_LDBL_3.4.31"
-                    || test.version_name == "CXXABI_1.3.14"
+                    || test.version_name == "CXXABI_1.3.15"
                     || test.version_name == "CXXABI_FLOAT128"
                     || test.version_name == "CXXABI_TM_1");
       if (added && !latestp)