* g++.dg/cpp1z/inline-var1.C (w): Initialize to 64 + 2.
authorJakub Jelinek <jakub@redhat.com>
Thu, 20 Oct 2016 18:37:40 +0000 (20:37 +0200)
committerJakub Jelinek <jakub@gcc.gnu.org>
Thu, 20 Oct 2016 18:37:40 +0000 (20:37 +0200)
From-SVN: r241383

gcc/testsuite/ChangeLog
gcc/testsuite/g++.dg/cpp1z/inline-var1.C

index eeeda8d8d970a5569631c4d4a0298f9246eea031..9f5867e07adc882a1190ba44ba57d19d277fa028 100644 (file)
@@ -1,3 +1,7 @@
+2016-10-20  Jakub Jelinek  <jakub@redhat.com>
+
+       * g++.dg/cpp1z/inline-var1.C (w): Initialize to 64 + 2.
+
 2016-10-20  Uros Bizjak  <ubizjak@gmail.com>
 
        PR target/78037
index c4fdaf8384aece00b4ad279388ee3d1e8cb122de..8e5baa3f3c736430975bf7f80c4f66e5b174cfdd 100644 (file)
@@ -13,7 +13,7 @@ inline int var22 = foo (7);
 extern inline int var23, var22;
 inline int var23 = foo (8);
 
-static int v, w;
+static int v, w = 64 + 2;
 
 int
 foo (int x)