1 // RUN: %clang_cc1 -triple i686-linux-gnu %s -emit-llvm -o - | FileCheck %s
4 // append has to have the same prototype as fn1 to tickle the bug.
11 // C has to be non-C++98 POD with available tail padding, making the LLVM base
12 // type differ from the complete LLVM type.
14 // This member creates a circular LLVM type reference to %class.D.
24 // We end up using an opaque type for 'append' to avoid circular references.
25 // CHECK: %class.A = type { ptr }
26 // CHECK: %class.C = type <{ ptr, %class.B, [3 x i8] }>
27 // CHECK: %class.B = type { i8 }
28 // CHECK: %class.D = type { %class.C.base, [3 x i8] }
29 // CHECK: %class.C.base = type <{ ptr, %class.B }>