blob: 4148697dd01aa44eb17743a56be698aa37a201cb [file] [log] [blame]
Chris Lattner23e24652009-04-06 16:53:45 +00001// RUN: clang %s -S -o - -mtriple=i686-apple-darwin9 &&
2// RUN: clang %s -S -o - -mtriple=x86_64-apple-darwin9
3
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}