re PR tree-optimization/33593 (tree-outof-ssa moves sources of non-call exceptions...
[gcc.git] / gcc / testsuite / g++.dg / tree-ssa / pr26140.C
1 /* { dg-do compile } */
2
3 struct Pitch
4 {
5 int notename_;
6 };
7 struct Audio_note
8 {
9 Audio_note (Pitch p);
10 };
11 void create_audio_elements ()
12 {
13 Pitch *pit;
14 new Audio_note (*pit);
15 }