aboutsummaryrefslogtreecommitdiff
path: root/test/CodeGenCXX/try-catch.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'test/CodeGenCXX/try-catch.cpp')
-rw-r--r--test/CodeGenCXX/try-catch.cpp13
1 files changed, 13 insertions, 0 deletions
diff --git a/test/CodeGenCXX/try-catch.cpp b/test/CodeGenCXX/try-catch.cpp
new file mode 100644
index 0000000000..2b5f3232d1
--- /dev/null
+++ b/test/CodeGenCXX/try-catch.cpp
@@ -0,0 +1,13 @@
+// RUN: %clang_cc1 %s -triple=x86_64-apple-darwin10 -emit-llvm -o - -fexceptions | FileCheck %s
+
+struct X { };
+
+const X g();
+
+void f() {
+ try {
+ throw g();
+ // CHECK: @_ZTI1X to i8
+ } catch (const X x) {
+ }
+}