You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
392 B
14 lines
392 B
// RUN: %clang_cc1 -x objective-c++ -triple x86_64-apple-darwin10 -emit-llvm -fcxx-exceptions -fexceptions -fobjc-exceptions -o - %s | FileCheck %s
|
|
|
|
// rdar://problem/22155434
|
|
namespace test0 {
|
|
void foo() {
|
|
try {
|
|
throw 0;
|
|
} catch (int e) {
|
|
return;
|
|
}
|
|
}
|
|
// CHECK: define void @_ZN5test03fooEv() #0 personality i8* bitcast (i32 (...)* @__gxx_personality_v0 to i8*)
|
|
}
|