Chris Lattner | 23e2465 | 2009-04-06 16:53:45 +0000 | [diff] [blame^] | 1 | // 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. | ||||
6 | void __objc_personality_v0() { } | ||||
7 | void test1(void) { | ||||
8 | @try { } @catch (...) { } | ||||
9 | } |