StmtPrinter: factor out arg printing code to PrintCallArgs
[clang.git] / test / CodeGenObjC / debug-info-crash.m
blob92f9c0eda3165d7c829510c0f82bd62630936a4f
1 // RUN: %clang_cc1 -triple i386-apple-darwin10 -fblocks -g -S %s -o -
3 // rdar://7556129
4 @implementation test
5 - (void)wait {
6   ^{};
8 @end
10 // PR4894
11 @interface I0 {
12   I0 *_iv0;
14 @end
15 @protocol P0 @end
17 @interface I1 @end
18 @implementation I1
19 - (I0<P0> *) im0 {
20   // CHECK: @"\01-[I1 im0]"
21   // CHECK: llvm.dbg.func.start
22   return 0;
24 @end
26 // PR4541
27 @class NSString;
28 @interface NSAttributedString 
29 - (NSString *)string;
30 @end 
31 @interface NSMutableAttributedString : NSAttributedString 
32 @end 
33 @class NSImage;
34 @implementation CYObjectsController 
35 + (void)initialize {
37 + (NSAttributedString *)attributedStringWithString:(id)string image:(NSImage *)image  {
38   NSMutableAttributedString *attrStr;
40 @end