Fariborz Jahanian | e4bb68a | 2008-12-19 17:45:06 +0000 | [diff] [blame] | 1 | // RUN: clang -fnext-runtime -emit-llvm -o %t %s && |
2 | // RUN: grep -e "\^{Innermost=CC}" %t | count 1 | ||||
3 | |||||
4 | @class Int1; | ||||
5 | |||||
6 | struct 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 |