blob: b209e3a850de5db1884efef550eba796f4446f1b [file] [log] [blame]
// RUN: %clang -flimit-debug-info -emit-llvm -g -S %s -o - | FileCheck %s
// CHECK: !DICompositeType(tag: DW_TAG_class_type, name: "A"
// CHECK-NOT: DIFlagFwdDecl
// CHECK-SAME: ){{$}}
class A {
public:
int z;
};
A *foo (A* x) {
A *a = new A(*x);
return a;
}
// CHECK: !DICompositeType(tag: DW_TAG_class_type, name: "B"
// CHECK-SAME: flags: DIFlagFwdDecl
class B {
public:
int y;
};
extern int bar(B *b);
int baz(B *b) {
return bar(b);
}
// CHECK: !DICompositeType(tag: DW_TAG_structure_type, name: "C"
// CHECK-SAME: flags: DIFlagFwdDecl
struct C {
};
C (*x)(C);