StmtPrinter: factor out arg printing code to PrintCallArgs
[clang.git] / test / CodeGenObjC / debug-info-self.m
blob9146ab3973c64a590b21fd5204ee0f1503f4e846
1 // RUN: %clang -fverbose-asm -g -S %s -o - | grep DW_AT_artificial | count 3
2 // self and _cmd are marked as DW_AT_artificial. 
3 // abbrev code emits another DT_artificial comment.
4 // myarg is not marked as DW_AT_artificial.
6 @interface MyClass {
8 - (id)init:(int) myarg;
9 @end
11 @implementation MyClass
12 - (id) init:(int) myarg
14     return self;
16 @end