1*f4a2713aSLionel Sambuc// RUN: %clang_cc1 %s -fsyntax-only 2*f4a2713aSLionel Sambuc 3*f4a2713aSLionel Sambuc__kernel void f__ro(__read_only image2d_t a) { } 4*f4a2713aSLionel Sambuc 5*f4a2713aSLionel Sambuc__kernel void f__wo(__write_only image2d_t a) { } 6*f4a2713aSLionel Sambuc 7*f4a2713aSLionel Sambuc__kernel void f__rw(__read_write image2d_t a) { } 8*f4a2713aSLionel Sambuc 9*f4a2713aSLionel Sambuc 10*f4a2713aSLionel Sambuc__kernel void fro(read_only image2d_t a) { } 11*f4a2713aSLionel Sambuc 12*f4a2713aSLionel Sambuc__kernel void fwo(write_only image2d_t a) { } 13*f4a2713aSLionel Sambuc 14*f4a2713aSLionel Sambuc__kernel void frw(read_write image2d_t a) { } 15