From: Rafael Espindola Date: Fri, 4 Oct 2013 14:33:42 +0000 (+0000) Subject: Add test from pr17476. X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=cf467a937ce4cde0e4c8ea512709b0192f9fc19f;p=clang Add test from pr17476. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@191956 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/test/CodeGenCXX/crash.cpp b/test/CodeGenCXX/crash.cpp new file mode 100644 index 0000000000..073542dd15 --- /dev/null +++ b/test/CodeGenCXX/crash.cpp @@ -0,0 +1,35 @@ +// RUN: %clang_cc1 %s -std=c++11 -emit-llvm-only +// CHECK that we don't crash. + +// PR11676's example is ill-formed: +/* +union _XEvent { +}; +void ProcessEvent() { + _XEvent pluginEvent = _XEvent(); +} +*/ + +// Example from PR11665: +void f() { + union U { int field; } u = U(); + (void)U().field; +} + +namespace PR17476 { +struct string { + string(const char *__s); + string &operator+=(const string &__str); +}; + +template void finalizeDefaultAtomValues() { + auto startEnd = [&](const char * sym)->void { + string start("__"); + start += sym; + } + ; + startEnd("preinit_array"); +} + +void f() { finalizeDefaultAtomValues(); } +} diff --git a/test/CodeGenCXX/pr11676.cpp b/test/CodeGenCXX/pr11676.cpp deleted file mode 100644 index 896751ad6e..0000000000 --- a/test/CodeGenCXX/pr11676.cpp +++ /dev/null @@ -1,17 +0,0 @@ -// RUN: %clang_cc1 %s -std=c++11 -emit-llvm-only -// CHECK that we don't crash. - -// PR11676's example is ill-formed: -/* -union _XEvent { -}; -void ProcessEvent() { - _XEvent pluginEvent = _XEvent(); -} -*/ - -// Example from PR11665: -void f() { - union U { int field; } u = U(); - (void)U().field; -}