diff options
Diffstat (limited to 'clang/test/CodeGen/global-init.c')
-rw-r--r-- | clang/test/CodeGen/global-init.c | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/clang/test/CodeGen/global-init.c b/clang/test/CodeGen/global-init.c index e28992f1186..651f7d809a0 100644 --- a/clang/test/CodeGen/global-init.c +++ b/clang/test/CodeGen/global-init.c @@ -31,15 +31,6 @@ 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 }; - - // 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. |