[llvm-commits] CVS: llvm/test/Regression/C++Frontend/CompileFail/2003-08-20-ExceptionFail.cpp

Chris Lattner lattner at cs.uiuc.edu
Wed Aug 20 15:37:00 PDT 2003


Changes in directory llvm/test/Regression/C++Frontend/CompileFail:

2003-08-20-ExceptionFail.cpp updated: 1.1 -> 1.2

---
Log message:

Simplify testcase even more


---
Diffs of the changes:

Index: llvm/test/Regression/C++Frontend/CompileFail/2003-08-20-ExceptionFail.cpp
diff -u llvm/test/Regression/C++Frontend/CompileFail/2003-08-20-ExceptionFail.cpp:1.1 llvm/test/Regression/C++Frontend/CompileFail/2003-08-20-ExceptionFail.cpp:1.2
--- llvm/test/Regression/C++Frontend/CompileFail/2003-08-20-ExceptionFail.cpp:1.1	Wed Aug 20 15:24:09 2003
+++ llvm/test/Regression/C++Frontend/CompileFail/2003-08-20-ExceptionFail.cpp	Wed Aug 20 15:36:09 2003
@@ -5,9 +5,6 @@
     ~local() { foo(); }
   } local_obj;
 
-  try {
-    foo();
-  } catch(...) {
-  }
+  foo();
 }
 





More information about the llvm-commits mailing list