blob: e09adac161ecb98fad8a191949625b9862761138 [file] [log] [blame]
Devang Pateld263e7b2010-02-10 01:09:50 +00001// 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