Daniel Dunbar | a289393 | 2009-05-13 23:08:57 +0000 | [diff] [blame] | 1 | // RUN: clang-cc -triple i386-apple-darwin9 -g -emit-llvm -o %t %s && |
Daniel Dunbar | bbd53af | 2009-05-14 01:45:24 +0000 | [diff] [blame] | 2 | // RUN: grep '@.str3 = internal constant \[8 x i8\] c"-\[A m0\]\\00"' %t && |
| 3 | // RUN: grep '@.str4 = internal constant \[9 x i8\] c"\\01-\[A m0\]\\00"' %t && |
| 4 | // RUN: grep '@llvm.dbg.subprogram = .* @.str3, .* @.str3, .* @.str4,' %t && |
| 5 | // RUN: true |
Daniel Dunbar | a289393 | 2009-05-13 23:08:57 +0000 | [diff] [blame] | 6 | |
| 7 | @interface A @end |
| 8 | @implementation A |
| 9 | -(void) m0 {} |
| 10 | @end |