diff options
Diffstat (limited to 'test/CodeGenCXX/2004-03-15-CleanupsAndGotos.cpp')
-rw-r--r-- | test/CodeGenCXX/2004-03-15-CleanupsAndGotos.cpp | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/test/CodeGenCXX/2004-03-15-CleanupsAndGotos.cpp b/test/CodeGenCXX/2004-03-15-CleanupsAndGotos.cpp new file mode 100644 index 000000000000..01350c00b9bd --- /dev/null +++ b/test/CodeGenCXX/2004-03-15-CleanupsAndGotos.cpp @@ -0,0 +1,14 @@ +// RUN: %clang_cc1 -emit-llvm %s -o - + +// Testcase from Bug 291 + +struct X { + ~X(); +}; + +void foo() { + X v; + +TryAgain: + goto TryAgain; +} |