diff options
| author | Rafael Espindola <rafael.espindola@gmail.com> | 2013-10-04 14:33:42 +0000 |
|---|---|---|
| committer | Rafael Espindola <rafael.espindola@gmail.com> | 2013-10-04 14:33:42 +0000 |
| commit | c4b1aea2d1a86eb263c92f7036e6f222cd15b650 (patch) | |
| tree | f404f1675800271f861333b018194619f78a2280 | |
| parent | 4b35f2720697c2900e4f9dafd6b1216d2075aa57 (diff) | |
| download | bcm5719-llvm-c4b1aea2d1a86eb263c92f7036e6f222cd15b650.tar.gz bcm5719-llvm-c4b1aea2d1a86eb263c92f7036e6f222cd15b650.zip | |
Add test from pr17476.
llvm-svn: 191956
| -rw-r--r-- | clang/test/CodeGenCXX/crash.cpp | 35 | ||||
| -rw-r--r-- | clang/test/CodeGenCXX/pr11676.cpp | 17 |
2 files changed, 35 insertions, 17 deletions
diff --git a/clang/test/CodeGenCXX/crash.cpp b/clang/test/CodeGenCXX/crash.cpp new file mode 100644 index 00000000000..073542dd15b --- /dev/null +++ b/clang/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 <class ELFT> void finalizeDefaultAtomValues() { + auto startEnd = [&](const char * sym)->void { + string start("__"); + start += sym; + } + ; + startEnd("preinit_array"); +} + +void f() { finalizeDefaultAtomValues<int>(); } +} diff --git a/clang/test/CodeGenCXX/pr11676.cpp b/clang/test/CodeGenCXX/pr11676.cpp deleted file mode 100644 index 896751ad6e3..00000000000 --- a/clang/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; -} |

