blob: f5b6b9207115e3b87ff3117519e81e79ce15fcc2 [file] [log] [blame]
Fariborz Jahaniane4bb68a2008-12-19 17:45:06 +00001// RUN: clang -fnext-runtime -emit-llvm -o %t %s &&
2// RUN: grep -e "\^{Innermost=CC}" %t | count 1
3
4@class Int1;
5
6struct Innermost {
7 unsigned char a, b;
8};
9
10@interface Int1 {
11 signed char a, b;
12 struct Innermost *innermost;
13}
14@end
15
16@implementation Int1
17@end