1// Test this without pch.
2// RUN: %clang_cc1 -include %S/ocl_types.h -fsyntax-only %s
3
4// Test with pch.
5// RUN: %clang_cc1 -x cl -emit-pch -o %t %S/ocl_types.h
6// RUN: %clang_cc1 -include-pch %t -fsyntax-only %s -ast-print
7
8void foo1(img1d_t img);
9
10void foo2(img1darr_t img);
11
12void foo3(img1dbuff_t img);
13
14void foo4(img2d_t img);
15
16void foo5(img2darr_t img);
17
18void foo6(img3d_t img);
19
20void foo7(smp_t smp) {
21  smp_t loc_smp;
22}
23
24void foo8(evt_t evt) {
25  evt_t loc_evt;
26}
27