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
This should always be signed chars, so use int8_t. This fixes a miscompile when
[llvm/stm8.git]
/
test
/
FrontendObjC
/
2007-10-18-ProDescriptor.m
blob
220fdd2c2329fa96c42ef9c6bddbc5b5b6e2e17a
1
// RUN: %llvmgcc -x objective-c -S %s -o /dev/null
2
@protocol O
3
@end
4
@interface O < O > {
5
}
6
@end
7
struct A {
8
};
9
@protocol AB
10
- (unsigned) ver;
11
@end
12
@interface AGy:O < AB > {
13
}
14
@end
15
@implementation AGy
16
- (unsigned) ver {
17
}
18
@end
19