2009-08-18 01:17:17 +02:00
|
|
|
// This is a regression test on debug info to make sure that we can set a
|
|
|
|
// breakpoint on a objective message.
|
2011-05-06 20:01:58 +02:00
|
|
|
// RUN: %llvmgcc -S -O0 -g %s -o - | llc -disable-cfi -o %t.s -O0
|
2009-08-18 01:17:17 +02:00
|
|
|
// RUN: %compile_c %t.s -o %t.o
|
|
|
|
// RUN: %link %t.o -o %t.exe -framework Foundation
|
|
|
|
// RUN: echo {break randomFunc\n} > %t.in
|
|
|
|
// RUN: gdb -q -batch -n -x %t.in %t.exe | tee %t.out | \
|
2010-07-27 20:13:53 +02:00
|
|
|
// RUN: grep {Breakpoint 1 at 0x.*: file .*2009-08-17-DebugInfo.m, line 21}
|
2009-10-13 22:45:18 +02:00
|
|
|
// XTARGET: darwin
|
2009-08-18 01:17:17 +02:00
|
|
|
@interface MyClass
|
|
|
|
{
|
|
|
|
int my;
|
|
|
|
}
|
|
|
|
+ init;
|
|
|
|
- randomFunc;
|
|
|
|
@end
|
|
|
|
|
|
|
|
@implementation MyClass
|
|
|
|
+ init {
|
|
|
|
}
|
2009-08-18 19:38:27 +02:00
|
|
|
- randomFunc { my = 42; }
|
2009-08-18 01:17:17 +02:00
|
|
|
@end
|
|
|
|
|
|
|
|
int main() {
|
|
|
|
id o = [MyClass init];
|
|
|
|
[o randomFunc];
|
|
|
|
return 0;
|
|
|
|
}
|