Update -fabi-version default to 11.
authorJason Merrill <jason@redhat.com>
Fri, 15 Jul 2016 18:38:05 +0000 (14:38 -0400)
committerJason Merrill <jason@gcc.gnu.org>
Fri, 15 Jul 2016 18:38:05 +0000 (14:38 -0400)
* c-opts.c (c_common_post_options): Update -fabi-version default to 11.

From-SVN: r238388

gcc/c-family/ChangeLog
gcc/c-family/c-opts.c
gcc/testsuite/g++.dg/abi/macro0.C

index 46e4509..1376a39 100644 (file)
@@ -1,3 +1,7 @@
+2016-07-15  Jason Merrill  <jason@redhat.com>
+
+       * c-opts.c (c_common_post_options): Update -fabi-version default to 11.
+
 2016-07-15  Jakub Jelinek  <jakub@redhat.com>
 
        PR c/71858
index d945825..c11e7e7 100644 (file)
@@ -887,15 +887,15 @@ c_common_post_options (const char **pfilename)
     }
   else if (flag_abi_compat_version == -1)
     {
-      /* Generate compatibility aliases for ABI v8 (5.1) by default. */
+      /* Generate compatibility aliases for ABI v10 (6.1) by default. */
       flag_abi_compat_version
-       = (flag_abi_version == 0 ? 8 : 0);
+       = (flag_abi_version == 0 ? 10 : 0);
     }
 
   /* Change flag_abi_version to be the actual current ABI level for the
      benefit of c_cpp_builtins.  */
   if (flag_abi_version == 0)
-    flag_abi_version = 10;
+    flag_abi_version = 11;
 
   if (cxx_dialect >= cxx11)
     {
index 6a695b9..5bc2277 100644 (file)
@@ -1,6 +1,6 @@
 // This testcase will need to be kept in sync with c_common_post_options.
 // { dg-options "-fabi-version=0" }
 
-#if __GXX_ABI_VERSION != 1010
+#if __GXX_ABI_VERSION != 1011
 #error "Incorrect value of __GXX_ABI_VERSION"
 #endif