2015-10-08 04:24:12 +00:00
|
|
|
// RUN: %clang_cc1 -triple x86_64-apple-darwin10.0.0 -emit-llvm -o - %s -fexceptions -std=c++11 -debug-info-kind=limited | FileCheck %s
|
2012-09-19 21:47:34 +00:00
|
|
|
|
|
|
|
struct D {
|
|
|
|
D();
|
|
|
|
D(const D&);
|
|
|
|
int x;
|
|
|
|
int d(int x);
|
|
|
|
};
|
|
|
|
int D::d(int x) {
|
|
|
|
[=] {
|
|
|
|
return this->x;
|
|
|
|
}();
|
|
|
|
}
|
|
|
|
|
2016-04-15 15:55:45 +00:00
|
|
|
// CHECK: ![[POINTER:.*]] = !DIDerivedType(tag: DW_TAG_pointer_type, baseType: !"_ZTS1D", size: 64, align: 64)
|
2015-04-29 16:40:08 +00:00
|
|
|
// CHECK: !DIDerivedType(tag: DW_TAG_member, name: "this",
|
2015-03-03 17:25:55 +00:00
|
|
|
// CHECK-SAME: line: 11
|
2016-04-15 15:55:45 +00:00
|
|
|
// CHECK-SAME: baseType: ![[POINTER]]
|
2015-03-03 17:25:55 +00:00
|
|
|
// CHECK-SAME: size: 64, align: 64
|
|
|
|
// CHECK-NOT: offset: 0
|
|
|
|
// CHECK-SAME: ){{$}}
|