2018-11-07 Richard Biener <rguenther@suse.de>
[official-gcc.git] / gcc / testsuite / g++.dg / torture / pr42739.C
blob2120648754223a122f53f6fbf24bd9ba8abed062
1 /* { dg-do compile } */
2 /* { dg-require-effective-target indirect_jumps } */
4 struct s { ~s() { s(); } };
6 int f()
8   M:
9     s o = s();
10     f();
11     f();
13   L:
14     goto *(f() ? &&L : &&M);
16     return 0;