Commit a564d350 by Matthias Klose Committed by Matthias Klose

decl.c (parse_version): Don't encode the minor version in the abi version.

2016-04-28  Matthias Klose  <doko@ubuntu.com>

        * decl.c (parse_version): Don't encode the minor version in the abi
        version.

From-SVN: r235546
parent cc5999c8
2016-04-28 Matthias Klose <doko@ubuntu.com>
* decl.c (parse_version): Don't encode the minor version in the abi
version.
2016-04-18 Michael Matz <matz@suse.de> 2016-04-18 Michael Matz <matz@suse.de>
* class.c (add_method_1): Use SET_DECL_ALIGN. * class.c (add_method_1): Use SET_DECL_ALIGN.
......
...@@ -540,9 +540,9 @@ parse_version (void) ...@@ -540,9 +540,9 @@ parse_version (void)
else /* C++ ABI */ else /* C++ ABI */
{ {
/* Implicit in this computation is the idea that we won't break the /* Implicit in this computation is the idea that we won't break the
old-style binary ABI in a sub-minor release (e.g., from 4.0.0 to old-style binary ABI in a sub-minor release (e.g., from 6.0 to
4.0.1). */ 6.1). */
abi_version = 100000 * major + 1000 * minor; abi_version = 100000 * major;
} }
if (flag_bootstrap_classes) if (flag_bootstrap_classes)
abi_version |= FLAG_BOOTSTRAP_LOADER; abi_version |= FLAG_BOOTSTRAP_LOADER;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment