1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-19 19:12:56 +02:00

New testcase for PR529

llvm-svn: 20356
This commit is contained in:
Chris Lattner 2005-02-27 19:28:30 +00:00
parent 970db20de4
commit f32f103de7

View File

@ -0,0 +1,8 @@
// RUN: %llvmgxx -S %s -o -
#include <new>
typedef double Ty[4];
void foo(Ty *XX) {
new(XX) Ty();
}