Test case for my last @encode patch.

llvm-svn: 61247
This commit is contained in:
Fariborz Jahanian 2008-12-19 17:45:06 +00:00
parent 47d3f2742a
commit 8c036a3af4
1 changed files with 17 additions and 0 deletions

View File

@ -0,0 +1,17 @@
// RUN: clang -fnext-runtime -emit-llvm -o %t %s &&
// RUN: grep -e "\^{Innermost=CC}" %t | count 1
@class Int1;
struct Innermost {
unsigned char a, b;
};
@interface Int1 {
signed char a, b;
struct Innermost *innermost;
}
@end
@implementation Int1
@end