[AMDGPU] Removed superfluous predicate. NFC.
[llvm-project.git] / clang / test / Driver / exceptions.m
blob90c9bb58e66139ed99423673b78974bf7c85b438
1 // RUN: %clang -target x86_64-apple-darwin11 \
2 // RUN:   -fsyntax-only -fno-exceptions %s
4 void f1(void) {
5   @throw @"A";
8 void f0(void) {
9   @try {
10     f1();
11   } @catch (id x) {
12     ;
13   }
16 int main(void) {
17   f0();
18   return 0;