blob: cf962384f6713f813268863bd9f63622291b4dc8 [file] [log] [blame]
Devang Patel42946a32009-08-17 23:17:17 +00001// This is a regression test on debug info to make sure that we can set a
2// breakpoint on a objective message.
3// RUN: %llvmgcc -S -O0 -g %s -o - | llvm-as | llc -o %t.s -f -O0
4// RUN: %compile_c %t.s -o %t.o
5// RUN: %link %t.o -o %t.exe -framework Foundation
6// RUN: echo {break randomFunc\n} > %t.in
7// RUN: gdb -q -batch -n -x %t.in %t.exe | tee %t.out | \
8// RUN: grep {Breakpoint 1 at 0x.*: file 2009-08-17-DebugInfo.m, line 22}
9// XTARGETS: darwin
10@interface MyClass
11{
12 int my;
13}
14+ init;
15- randomFunc;
16@end
17
18@implementation MyClass
19+ init {
20}
21- randomFunc {
22 my = 42;
23}
24@end
25
26int main() {
27 id o = [MyClass init];
28 [o randomFunc];
29 return 0;
30}