xref: /minix3/external/bsd/llvm/dist/clang/test/PCH/objc_stmts.m (revision f4a2713ac843a11c696ec80c0a5e3e5d80b4d338)
1// Test this without pch.
2// RUN: %clang_cc1 -include %S/objc_stmts.h -emit-llvm -fobjc-exceptions -o - %s
3// RUN: %clang_cc1 -include %S/objc_stmts.h -ast-print -fobjc-exceptions -o - %s | FileCheck %s
4
5// Test with pch.
6// RUN: %clang_cc1 -x objective-c -emit-pch -fobjc-exceptions -o %t %S/objc_stmts.h
7// RUN: %clang_cc1 -include-pch %t -emit-llvm -fobjc-exceptions -o - %s
8// RUN: %clang_cc1 -include-pch %t -ast-print -fobjc-exceptions -o - %s | FileCheck %s
9
10// CHECK: @catch(A *a)
11// CHECK: @catch(B *b)
12// CHECK: @catch()
13