diff options
author | Nuno Lopes <nunoplopes@sapo.pt> | 2010-04-18 19:06:43 +0000 |
---|---|---|
committer | Nuno Lopes <nunoplopes@sapo.pt> | 2010-04-18 19:06:43 +0000 |
commit | a75b71f967d7f090ef16a3d255baddbdce7ff81e (patch) | |
tree | 69a4f231ee98c24d23fc325536c5410a28f98e34 /test/CodeGen/global-init.c | |
parent | a77eaa9f4562dc611aa121a20ee8f2e2146765ce (diff) |
recommit r101568 to fix PR6766
as a side-effect, remove two FIXMEs now fixed
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@101726 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/CodeGen/global-init.c')
-rw-r--r-- | test/CodeGen/global-init.c | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/test/CodeGen/global-init.c b/test/CodeGen/global-init.c index 651f7d809a..351ca9e35a 100644 --- a/test/CodeGen/global-init.c +++ b/test/CodeGen/global-init.c @@ -31,6 +31,19 @@ struct ManyFields { struct ManyFields FewInits = {1, 2}; +// PR6766 +// CHECK: @l = global %1 { [24 x i8] c"f\00\00\00o\00\00\00o\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00", i32 1 } +typedef __WCHAR_TYPE__ wchar_t; +struct K { + wchar_t L[6]; + int M; +} l = { { L"foo" }, 1 }; + + +// CHECK: @yuv_types = global [4 x [6 x i8]] {{\[}}[6 x i8] c"4:0:0\00", [6 x i8] c"4:2:0\00", [6 x i8] c"4:2:2\00", [6 x i8] c"4:4:4\00"] +char yuv_types[4][6]= {"4:0:0","4:2:0","4:2:2","4:4:4"}; + + // NOTE: tentative definitions are processed at the end of the translation unit. // This shouldn't be emitted as common because it has an explicit section. |