]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - test/CodeGenObjC/2010-02-09-DbgSelf.m
Vendor import of clang trunk r126547:
[FreeBSD/FreeBSD.git] / test / CodeGenObjC / 2010-02-09-DbgSelf.m
1 // RUN: %clang_cc1 -x objective-c -emit-llvm -g < %s | grep  "\"self\", metadata" 
2 // Test to check that "self" argument is assigned a location.
3
4 @interface Foo 
5 -(void) Bar: (int)x ;
6 @end
7
8
9 @implementation Foo
10 -(void) Bar: (int)x 
11 {
12 }
13 @end
14