diff options
Diffstat (limited to 'test/CodeGenCXX/mangle-fail.cpp')
-rw-r--r-- | test/CodeGenCXX/mangle-fail.cpp | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/test/CodeGenCXX/mangle-fail.cpp b/test/CodeGenCXX/mangle-fail.cpp index 02548964efc9..b588d57749fa 100644 --- a/test/CodeGenCXX/mangle-fail.cpp +++ b/test/CodeGenCXX/mangle-fail.cpp @@ -1,6 +1,5 @@ // RUN: %clang_cc1 -emit-llvm-only -x c++ -std=c++11 -triple %itanium_abi_triple -verify %s -DN=1 // RUN: %clang_cc1 -emit-llvm-only -x c++ -std=c++11 -triple %itanium_abi_triple -verify %s -DN=2 -// RUN: %clang_cc1 -emit-llvm-only -x c++ -std=c++11 -triple %itanium_abi_triple -verify %s -DN=3 struct A { int a; }; @@ -14,11 +13,6 @@ template void test<int>(int (&)[sizeof(int)]); template<class T> void test(int (&)[sizeof((A){}, T())]) {} // expected-error {{cannot yet mangle}} template void test<int>(int (&)[sizeof(A)]); -#elif N == 3 -// DesignatedInitExpr -template<class T> void test(int (&)[sizeof(A{.a = 10}, T())]) {} // expected-error {{cannot yet mangle}} -template void test<int>(int (&)[sizeof(A)]); - // FIXME: There are several more cases we can't yet mangle. #else |