[docs] Add LICENSE.txt to the root of the mono-repo
[llvm-project.git] / clang / test / CodeGenObjC / 2010-02-09-DbgSelf.m
blob0f8ad9d9c7b1df2ff365474a3fc601649b46b441
1 // RUN: %clang_cc1 -no-opaque-pointers -x objective-c -emit-llvm -debug-info-kind=limited < %s | FileCheck %s
2 // Test to check that "self" argument is assigned a location.
3 // CHECK: call void @llvm.dbg.declare(metadata %0** %{{[^,]+}}, metadata [[SELF:![0-9]*]], metadata !{{.*}})
4 // CHECK: [[SELF]] = !DILocalVariable(name: "self", arg: 1,
6 @interface Foo 
7 -(void) Bar: (int)x ;
8 @end
11 @implementation Foo
12 -(void) Bar: (int)x 
15 @end