Commit a87926c1 by Kai Tietz Committed by Kai Tietz

re PR target/51726 (LTO and attribute 'selectany')

        PR target/51726
        * g++.dg/ext/selectany2.C: Allow uninitialized variable case.

From-SVN: r228371
parent 63578ef9
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
......
......@@ -18,7 +18,7 @@ struct f
};
__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.
......
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