Daniel Dunbar | 590230d | 2009-04-07 02:31:44 +0000 | [diff] [blame] | 1 | // RUN: clang-cc %s -S -o - -triple=i686-apple-darwin9 && |
2 | // RUN: clang-cc %s -S -o - -triple=x86_64-apple-darwin9 | ||||
Chris Lattner | b02e53b | 2009-04-06 16:53:45 +0000 | [diff] [blame] | 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 | } |