From cd5e5a6a2a1f094dbb3380f74e76c5f94a330d2e Mon Sep 17 00:00:00 2001 From: Chris Lattner Date: Wed, 20 Aug 2003 20:36:09 +0000 Subject: [PATCH] Simplify testcase even more git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@7991 91177308-0d34-0410-b5e6-96231b3b80d8 --- test/C++Frontend/2003-08-20-ExceptionFail.cpp | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/test/C++Frontend/2003-08-20-ExceptionFail.cpp b/test/C++Frontend/2003-08-20-ExceptionFail.cpp index dfad1bff8eb..606a2f27d65 100644 --- a/test/C++Frontend/2003-08-20-ExceptionFail.cpp +++ b/test/C++Frontend/2003-08-20-ExceptionFail.cpp @@ -5,9 +5,6 @@ void bar() { ~local() { foo(); } } local_obj; - try { - foo(); - } catch(...) { - } + foo(); } -- 2.34.1