mirror of
https://github.com/llvm/llvm-project.git
synced 2025-04-28 02:56:06 +00:00

With this change, most 'g' options are rejected by CompilerInvocation. They remain only as Driver options. The new way to request debug info from cc1 is with "-debug-info-kind={line-tables-only|limited|standalone}" and "-dwarf-version={2|3|4}". In the absence of a command-line option to specify Dwarf version, the Toolchain decides it, rather than placing Toolchain-specific logic in CompilerInvocation. Also fix a bug in the Windows compatibility argument parsing in which the "rightmost argument wins" principle failed. Differential Revision: http://reviews.llvm.org/D13221 llvm-svn: 249655
37 lines
1.1 KiB
C++
37 lines
1.1 KiB
C++
// RUN: %clang_cc1 -triple x86_64-unk-unk -debug-info-kind=standalone -o - -emit-llvm %s | FileCheck %s
|
|
// On Darwin, "full" debug info is the default, so really these tests are
|
|
// identical, as cc1 no longer chooses the effective value of DebugInfoKind.
|
|
// RUN: %clang_cc1 -triple x86_64-apple-darwin -debug-info-kind=standalone -o - -emit-llvm %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: !DICompositeType(tag: DW_TAG_structure_type, name: "foo"
|
|
// CHECK-NOT: DIFlagFwdDecl
|
|
// CHECK-SAME: ){{$}}
|
|
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: !DICompositeType(tag: DW_TAG_structure_type, name: "foo"
|
|
// CHECK-NOT: DIFlagFwdDecl
|
|
// CHECK-SAME: ){{$}}
|
|
struct foo;
|
|
void bar() {
|
|
foo *f;
|
|
}
|
|
struct foo {
|
|
};
|
|
}
|