aboutsummaryrefslogtreecommitdiff
path: root/test/Misc/ast-dump-pipe.cl
blob: ceed2f6f8992a7b67c7960a5988b1922236a57ad (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
// 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'