Minor cleanup related to my latest scheduler changes.
[oota-llvm.git] / test / FrontendObjC / 2009-11-30-Objc-ID.m
1 // RUN: %llvmgcc -S -O0 -g %s -o - | \
2 // RUN:     llc --disable-fp-elim -o %t.s -O0 
3 // RUN: grep id %t.s | grep DW_AT_name
4 @interface A
5 -(id) blah;
6 @end
7
8 @implementation A
9 -(id)blah {
10   int i = 1;
11   i++;
12   return i;
13 }
14 @end