Lines Matching defs:B1
5 // CHECK: %coerce.dive2 = getelementptr inbounds nuw %class.B1
10 // CHECK: call void @"??1B1@@QEAA@XZ"
16 // ----- B1 scope begin without base ctor
19 // CHECK: call void @"??1B1@@QEAA@XZ"
29 // CHECK: call noundef ptr @"??0B1@@QEAA@XZ"(ptr
33 // ----- B1 scope end without base dtor
48 class B1 {
51 B1() { foo(data + 111); }
52 ~B1() { printf("in B1 Dtor \n"); }
54 class B2 : public B1 {
65 int bar(int j, class B1 b1Bar, class B2 b2Bar)
75 class B1 goo(int w)
99 // CHECK: invoke noundef ptr @"??0B1@@QEAA@XZ"
121 int i = bar(foo(0), B1(), B2());
126 class B1 b1fromgoo = goo(i);