brintos

brintos / llvm-project-archived public Read only

0
0
Text · 367 B · e481e4b Raw
11 lines · plain
1// REQUIRES: x86-registered-target2// RUN: %clang_cc1 %s -fobjc-exceptions -S -o - -triple=i686-apple-darwin93// RUN: %clang_cc1 %s -fobjc-exceptions -S -o - -triple=x86_64-apple-darwin94 5// Don't crash if the internal proto for __objc_personality_v0 mismatches with6// an actual one.7void __objc_personality_v0() { }8void test1(void) {9  @try { } @catch (...) { }10}11