PR target/51726
* g++.dg/ext/selectany2.C: Allow uninitialized variable case.
From-SVN: r228371
+2015-10-02 Kai Tietz <ktietz70@googlemail.com>
+
+ PR target/51726
+ * g++.dg/ext/selectany2.C: Allow uninitialized variable case.
+
2015-10-01 Louis Krupp <louis.krupp@zoho.com>
PR fortran/62242
};
__declspec (selectany) struct f F= {1}; // OK
-__declspec (selectany) int boo; //{ dg-error "selectany" }
+__declspec (selectany) int boo; // OK
__declspec (selectany) static int bar = 1; // { dg-error "selectany" }
int use_bar = bar; // Avoid defined but not used warning.