comparison gcc/testsuite/g++.dg/ipa/pr83667.C @ 131:84e7813d76e9

gcc-8.2
author mir3636
date Thu, 25 Oct 2018 07:37:49 +0900
parents
children
comparison
equal deleted inserted replaced
111:04ced10e8804 131:84e7813d76e9
1 // { dg-require-alias "" }
2 // { dg-options "-fdump-ipa-inline" }
3 // c++/83667 ICE dumping a static thunk when TARGET_USE_LOCAL_THUNK_ALIAS_P
4
5
6 struct a
7 {
8 virtual ~a ();
9 };
10
11 struct b
12 {
13 virtual void d (...);
14 };
15
16 struct c : a, b
17 {
18 void d (...)
19 {
20 }
21 };
22
23 c c;
24
25 // { dg-final { scan-ipa-dump "summary for void c::\[^\\n\]*THUNK0" "inline" } }