* g++.dg/ext/attrib35.C: Fix target selector string.
[official-gcc/alias-decl.git] / gcc / testsuite / g++.dg / ext / attrib37.C
blobd12c176afd32d2aa3c4bf4ca08d435711ca5d2df
1 // PR c++/43093
2 // { dg-do compile { target { { i?86-*-* x86_64-*-* } && ilp32 } } }
4 struct S {
5   int x;
6   S(const S &s) {}
7 };
9 S __attribute__((__stdcall__)) getS();
11 void test()
13   S s = getS();