teak-llvm/clang/test/CodeGenObjC/simplify-exceptions.mm
John McCall 9b0a7cea0f Make -fobjc-nonfragile-abi the -cc1 default, since it's the
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
2011-10-02 01:16:38 +00:00

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;
}