diff options
Diffstat (limited to 'clang/test/CodeGenObjC/encode-test.m')
-rw-r--r-- | clang/test/CodeGenObjC/encode-test.m | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/clang/test/CodeGenObjC/encode-test.m b/clang/test/CodeGenObjC/encode-test.m index 24a90a0b4b9..580b32cd0a1 100644 --- a/clang/test/CodeGenObjC/encode-test.m +++ b/clang/test/CodeGenObjC/encode-test.m @@ -144,3 +144,10 @@ struct s8 { long double x; }; const char g8[] = @encode(struct s8); + +// CHECK: @g9 = constant [11 x i8] c"{S9=i[0i]}\00" +struct S9 { + int x; + int flex[]; +}; +const char g9[] = @encode(struct S9); |