
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
17 lines
397 B
Objective-C
17 lines
397 B
Objective-C
// RUN: %clang_cc1 -x objective-c -emit-llvm -g < %s | FileCheck %s
|
|
// Test to check that "self" argument is assigned a location.
|
|
// CHECK: call void @llvm.dbg.declare(metadata %0** %{{[^,]+}}, metadata [[SELF:![0-9]*]], metadata !{{.*}})
|
|
// CHECK: [[SELF]] = {{.*}} ; [ DW_TAG_arg_variable ] [self]
|
|
|
|
@interface Foo
|
|
-(void) Bar: (int)x ;
|
|
@end
|
|
|
|
|
|
@implementation Foo
|
|
-(void) Bar: (int)x
|
|
{
|
|
}
|
|
@end
|
|
|