From e6ccd113b9ad7c40aa5f71e526537bbeac33d80b Mon Sep 17 00:00:00 2001 From: Anton Korobeynikov Date: Thu, 29 May 2008 19:17:15 +0000 Subject: For PR1338: Rename test dirs git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@51695 91177308-0d34-0410-b5e6-96231b3b80d8 --- test/FrontendC++/2003-08-24-Cleanup.cpp | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 test/FrontendC++/2003-08-24-Cleanup.cpp (limited to 'test/FrontendC++/2003-08-24-Cleanup.cpp') diff --git a/test/FrontendC++/2003-08-24-Cleanup.cpp b/test/FrontendC++/2003-08-24-Cleanup.cpp new file mode 100644 index 0000000..ab0d1a0 --- /dev/null +++ b/test/FrontendC++/2003-08-24-Cleanup.cpp @@ -0,0 +1,10 @@ +// RUN: %llvmgxx -xc++ %s -c -o - | llvm-dis | grep unwind + +struct S { ~S(); }; + +int mightthrow(); + +int test() { + S s; + mightthrow(); +} -- cgit v1.1