Lines Matching refs:array
11 ClassWithoutDtor *array = new ClassWithoutDtor[42];
14 delete [] array;
26 ClassWithDtor *array = new ClassWithDtor[42];
31 // CHECK: [[ARRAY:%.*]] = getelementptr inbounds i8, i8* [[ALLOCATED]], i32 4
32 // CHECK: bitcast i8* [[ARRAY]] to [[CLASS:%.*]]*
34 delete [] array;
48 ClassWithAlignment *array = new ClassWithAlignment[42];
53 // CHECK: [[ARRAY:%.*]] = getelementptr inbounds i8, i8* [[ALLOCATED]], i32 8
54 // CHECK: bitcast i8* [[ARRAY]] to [[CLASS:%.*]]*
56 delete [] array;