blob: c2e52f66dce35c0d2b3dd9fdae9e6340685cf111 [file] [log] [blame]
Dan Gohman2d65d352009-08-25 15:38:29 +00001// RUN: %llvmgxx -S %s -o - | llvm-as -o /dev/null
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002
3// Testcase from Bug 291
4
5struct X {
6 ~X();
7};
8
9void foo() {
10 X v;
11
12TryAgain:
13 goto TryAgain;
14}