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