blob: 787bf72efe3ee94a5202c0694f10b68d6fbf0bc1 [file] [log] [blame]
// 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