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
31 lines
552 B
Plaintext
31 lines
552 B
Plaintext
// RUN: %clang_cc1 -fcxx-exceptions -fexceptions -debug-info-kind=line-tables-only -fblocks -emit-llvm %s -o - | FileCheck %s
|
|
|
|
void fn();
|
|
|
|
struct foo {
|
|
~foo();
|
|
};
|
|
|
|
void f1() {
|
|
^{
|
|
foo f;
|
|
fn();
|
|
// CHECK: cleanup, !dbg [[DBG_F1:![0-9]*]]
|
|
#line 100
|
|
}();
|
|
}
|
|
|
|
// CHECK-LABEL: define internal {{.*}}i8* @"\01-[TNSObject init]"
|
|
@implementation TNSObject
|
|
- (id)init
|
|
{
|
|
foo f;
|
|
fn();
|
|
// CHECK: cleanup, !dbg [[DBG_TNSO:![0-9]*]]
|
|
#line 200
|
|
}
|
|
@end
|
|
|
|
// CHECK: [[DBG_F1]] = !DILocation(line: 100,
|
|
// CHECK: [[DBG_TNSO]] = !DILocation(line: 200,
|