comparison gcc/testsuite/g++.dg/tree-ssa/pr93667.C @ 152:2b5abeee2509

update gcc11
author anatofuz
date Mon, 25 May 2020 07:50:57 +0900
parents
children
comparison
equal deleted inserted replaced
145:1830386684a0 152:2b5abeee2509
1 // { dg-do compile }
2 // { dg-options "-O2 -std=c++2a" } */
3
4 struct a {};
5 struct b { [[no_unique_address]] a aq; };
6 struct c {
7 int d;
8 [[no_unique_address]] b e;
9 };
10 c f() {return {};}
11 void g() { f(); }