annotate clang/test/CodeGenObjC/try.m @ 206:f17a3b42b08b
Added tag before-12 for changeset b7591485f4cd
author |
Shinji KONO <kono@ie.u-ryukyu.ac.jp> |
date |
Mon, 07 Jun 2021 21:25:57 +0900 |
parents |
1d019706d866 |
children |
|
rev |
line source |
150
|
1 // REQUIRES: x86-registered-target
|
|
2 // RUN: %clang_cc1 %s -fobjc-exceptions -S -o - -triple=i686-apple-darwin9
|
|
3 // RUN: %clang_cc1 %s -fobjc-exceptions -S -o - -triple=x86_64-apple-darwin9
|
|
4
|
|
5 // rdar://6757213 - Don't crash if the internal proto for
|
|
6 // __objc_personality_v0 mismatches with an actual one.
|
|
7 void __objc_personality_v0() { }
|
|
8 void test1(void) {
|
|
9 @try { } @catch (...) { }
|
|
10 }
|