Home | History | Annotate | Download | only in CodeGenCXX

Lines Matching defs:Derived2

5 // CHECK: @_ZTV8Derived2 = unnamed_addr constant [5 x i8*] [i8* null, i8* null, i8* null, i8* bitcast (i8* (%struct.Derived2*)* @_ZNK8Derived23efgEv to i8*), i8* null]
45 struct Derived2 : virtual Base2 {
49 char* Derived2::efg(void) const { return 0; }
51 void FUNC2(Derived2* p) {
52 // CHECK: [[V1:%.*]] = load i8* (%struct.Derived2*)*, i8* (%struct.Derived2*)** getelementptr inbounds (i8* (%struct.Derived2*)*, i8* (%struct.Derived2*)** bitcast ([5 x i8*]* @_ZTV8Derived2 to i8* (%struct.Derived2*)**), i64 3)
54 char* c = p->Derived2::efg();