If PrototypeValue is erased in the middle of using the SSAUpdator
[oota-llvm.git] / test / FrontendC++ / 2005-02-27-PlacementArrayNewCrash.cpp
1 // RUN: %llvmgxx -S %s -o -
2
3 #include <new>
4 typedef double Ty[4];
5
6 void foo(Ty *XX) {
7   new(XX) Ty();
8 }