From: Chris Lattner Date: Wed, 20 Aug 2003 20:36:09 +0000 (+0000) Subject: Simplify testcase even more X-Git-Url: http://plrg.eecs.uci.edu/git/?a=commitdiff_plain;h=cd5e5a6a2a1f094dbb3380f74e76c5f94a330d2e;p=oota-llvm.git Simplify testcase even more git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@7991 91177308-0d34-0410-b5e6-96231b3b80d8 --- 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(); }