mirror of
https://github.com/Gericom/teak-llvm.git
synced 2025-06-27 23:38:59 -04:00

increasingly prevailing case to the point that new features like ARC don't even support the fragile ABI anymore. This required a little bit of reshuffling with exceptions because a check was assuming that ObjCNonFragileABI was only being set in ObjC mode, and that's actually a bit obnoxious to do. Most, though, it involved a perl script to translate a ton of test cases. Mostly no functionality change for driver users, although there are corner cases with disabling language-specific exceptions that we should handle more correctly now. llvm-svn: 140957
19 lines
495 B
Plaintext
19 lines
495 B
Plaintext
// RUN: %clang_cc1 -triple x86_64-apple-darwin10 -emit-llvm \
|
|
// RUN: -fexceptions -fobjc-exceptions \
|
|
// RUN: -o %t %s
|
|
// RUN: FileCheck < %t %s
|
|
//
|
|
// <rdar://problem/7471679> [irgen] [eh] Exception code built with clang (x86_64) crashes
|
|
|
|
// Check that we don't emit unnecessary personality function references.
|
|
struct t0_A { t0_A(); };
|
|
struct t0_B { t0_A a; };
|
|
|
|
// CHECK: define {{.*}} @_Z2t0v(){{.*}} {
|
|
// CHECK-NOT: objc_personality
|
|
// CHECK: }
|
|
t0_B& t0() {
|
|
static t0_B x;
|
|
return x;
|
|
}
|