blob: 787bf72efe3ee94a5202c0694f10b68d6fbf0bc1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
// RUN: %llvmgcc -S -O0 -g %s -o - | \
// RUN: llc --disable-fp-elim -o %t.s -O0
// RUN: grep id %t.s | grep DW_AT_name
@interface A
-(id) blah;
@end
@implementation A
-(id)blah {
int i = 1;
i++;
return i;
}
@end
|