This is to make test cases looking for definitions more legible by making the definition explicit rather than just the absence of '[fwd]'. This allowed the debug-info-record tests to be rephrased - and in the interests of reducing the number of individual test cases/invocations we have, I merged them into one file, separated them with namespaces (& then moved them to C++ because namespaces are great). If they need to remain 'C' only tests, they can be moved back. (I didn't group them with 'debug-info-class.cpp' because these tests only apply to -fno-limit-debug-info) I removed the pieces of code that would cause these tests to pass under -flimit-debug-info to ensure the tests remain relevant to their fixes should we ever improve -flimit-debug-info to catch that kind of code. This commit is version locked with the corresponding change to DebugInfo.h in LLVM. Except some transient buildbot fallout. llvm-svn: 184524
31 lines
725 B
C++
31 lines
725 B
C++
// RUN: %clang_cc1 -triple x86_64-unk-unk -fno-limit-debug-info -o - -emit-llvm -g %s | FileCheck %s
|
|
|
|
namespace rdar14101097_1 { // see also PR16214
|
|
// Check that we emit debug info for the definition of a struct if the
|
|
// definition is available, even if it's used via a pointer wrapped in a
|
|
// typedef.
|
|
// CHECK: [ DW_TAG_structure_type ] [foo] {{.*}}[def]
|
|
struct foo {
|
|
};
|
|
|
|
typedef foo *foop;
|
|
|
|
void bar() {
|
|
foop f;
|
|
}
|
|
}
|
|
|
|
namespace rdar14101097_2 {
|
|
// As above, except trickier because we first encounter only a declaration of
|
|
// the type and no debug-info related use after we see the definition of the
|
|
// type.
|
|
// CHECK: [ DW_TAG_structure_type ] [foo] {{.*}}[def]
|
|
struct foo;
|
|
void bar() {
|
|
foo *f;
|
|
}
|
|
struct foo {
|
|
};
|
|
}
|
|
|