teak-llvm/clang/test/Misc/ast-dump-pipe.cl
Joey Gouly 5788b783ac [OpenCL] Introduce ReadPipeType and WritePipeType.
This allows Sema to diagnose passing a read_only pipe to a
write_only pipe argument.

llvm-svn: 287343
2016-11-18 14:10:54 +00:00

13 lines
510 B
Common Lisp

// RUN: %clang_cc1 -triple spir64 -cl-std=CL2.0 -ast-dump -ast-dump-filter pipetype %s | FileCheck -strict-whitespace %s
typedef pipe int pipetype;
// CHECK: PipeType {{.*}} 'read_only pipe int'
// CHECK-NEXT: BuiltinType {{.*}} 'int'
typedef read_only pipe int pipetype2;
// CHECK: PipeType {{.*}} 'read_only pipe int'
// CHECK-NEXT: BuiltinType {{.*}} 'int'
typedef write_only pipe int pipetype3;
// CHECK: PipeType {{.*}} 'write_only pipe int'
// CHECK-NEXT: BuiltinType {{.*}} 'int'