repo.or.cz
/
llvm
/
stm8.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
history
|
raw
|
HEAD
Silence -Wunused-variable in release builds.
[llvm/stm8.git]
/
test
/
FrontendObjC
/
2009-11-30-Objc-ID.m
blob
787bf72efe3ee94a5202c0694f10b68d6fbf0bc1
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