You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
38 lines
734 B
38 lines
734 B
4 months ago
|
// RUN: %clang -flimit-debug-info -emit-llvm -g -S %s -o - | FileCheck %s
|
||
|
// RUN: %clang -flimit-debug-info -emit-llvm -g -S %s -o - | FileCheck --check-prefix=CHECK-C %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-C: !DICompositeType(tag: DW_TAG_structure_type, name: "C"
|
||
|
// CHECK-C-SAME: flags: DIFlagFwdDecl
|
||
|
|
||
|
struct C {
|
||
|
};
|
||
|
|
||
|
C (*x)(C);
|