blob: 884e33a219c09f9af8e2a22ae979fc8f84ce8f44 [file] [log] [blame]
Daniel Dunbara5728872009-12-15 20:14:24 +00001// RUN: %clang_cc1 %s -S -o - -triple=i686-apple-darwin9
2// RUN: %clang_cc1 %s -S -o - -triple=x86_64-apple-darwin9
Chris Lattnerb02e53b2009-04-06 16:53:45 +00003
4// rdar://6757213 - Don't crash if the internal proto for
5// __objc_personality_v0 mismatches with an actual one.
6void __objc_personality_v0() { }
7void test1(void) {
8 @try { } @catch (...) { }
9}