blob: 7701b23e08198d8939083fe28adafea9ff90324e [file] [log] [blame]
Daniel Dunbar590230d2009-04-07 02:31:44 +00001// RUN: clang-cc %s -S -o - -triple=i686-apple-darwin9 &&
2// RUN: clang-cc %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}