
This brings our tree to NetBSD 7.0, as found on -current on the 10-10-2015. This updates: - LLVM to 3.6.1 - GCC to GCC 5.1 - Replace minix/commands/zdump with usr.bin/zdump - external/bsd/libelf has moved to /external/bsd/elftoolchain/ - Import ctwm - Drop sprintf from libminc Change-Id: I149836ac18e9326be9353958bab9b266efb056f0
31 lines
531 B
Plaintext
31 lines
531 B
Plaintext
// RUN: %clang_cc1 -fcxx-exceptions -fexceptions -gline-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]] = !MDLocation(line: 100,
|
|
// CHECK: [[DBG_TNSO]] = !MDLocation(line: 200,
|